chore(deps): bump crate-ci/typos from 1.46.2 to 1.46.3 in the actions group #59
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: CI | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| # >=22 required: the `test` script uses --test-coverage-exclude, | |
| # which Node added in 22.5.0. On Node 20 it errors with | |
| # `bad option: --test-coverage-exclude` and the build job hard-fails. | |
| node-version: '22' | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm test |