Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork28.3k
build(deps-dev): Bump eslint from 9.39.1 to 9.39.2#7266
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:Test | |
| on: | |
| push: | |
| branches: | |
| -master | |
| pull_request: | |
| branches: | |
| -master | |
| permissions:read-all | |
| jobs: | |
| build: | |
| name:Perform tests | |
| runs-on:ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version:[22.x] | |
| steps: | |
| -uses:actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3# v6.0.0 | |
| -name:Setup Node | |
| uses:actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903# v6.0.0 | |
| with: | |
| node-version:${{ matrix.node-version }} | |
| cache:npm | |
| -name:Install & Test | |
| run:| | |
| npm ci | |
| npm run test | |
| -name:Run ESLint | |
| run:| | |
| npm run lint | |
| -name:Run bench tests | |
| run:| | |
| npm run bench | |
| -name:Run Prettier | |
| run:| | |
| npm run format:check | |
| -name:Code Coverage | |
| uses:codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0# v3.1.5 |