chore(deps-dev): bump json-2-csv from 5.5.10 to 5.5.11 in /server #1530
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: 'Check spelling' | |
| on: # rebuild any PRs and main branch changes | |
| pull_request: | |
| push: | |
| jobs: | |
| spell-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install CSpell | |
| run: npm install -g cspell | |
| - name: Check spelling | |
| run: npx cspell --config ./cspell.json "**/*.jsx" --no-progress --no-exit-code |