feat: Update CSpell from 9.7.0 to 9.8.0
#5073
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ' 🧽 Lint Docs' | |
| on: # rebuild any PRs and main branch changes | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'website/**' | |
| jobs: | |
| cspell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: npx cspell website | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: ./.github/actions/setup-node | |
| - run: | | |
| npm i | |
| npx prettier -c website |