Bump sinon from 21.0.1 to 21.0.2 #553
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: PR Build | |
| on: pull_request | |
| jobs: | |
| code-quality: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| strategy: | |
| # Don't fail all elements of the matrix if one fails | |
| fail-fast: false | |
| matrix: | |
| node-version: ['20.x', '22.x', '24.x'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run lint | |
| - run: npm run cover | |
| - run: npm run format:check |