Skip to content

chore: bump peter-evans/create-pull-request from 7.0.2 to 7.0.3 in /.github/actions/pr #5997

chore: bump peter-evans/create-pull-request from 7.0.2 to 7.0.3 in /.github/actions/pr

chore: bump peter-evans/create-pull-request from 7.0.2 to 7.0.3 in /.github/actions/pr #5997

Workflow file for this run

name: ' 🧽 Lint'
on: # rebuild any PRs and main branch changes
workflow_dispatch:
pull_request:
paths-ignore:
- 'website/**'
push:
branches:
- main
paths-ignore:
- 'website/**'
jobs:
cspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npx cspell . --dot --no-progress
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
cache: npm
- run: npm install
- run: npm run build
- run: npm run lint