Bump eslint from 9.34.0 to 9.35.0 in the linting group #18
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: Tests | |
| on: [pull_request] | |
| jobs: | |
| unit-tests: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup | |
| id: setup | |
| uses: kitbagjs/actions-setup-project@main | |
| - name: Run tests | |
| run: npm run test | |
| types: | |
| name: Types | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup | |
| id: setup | |
| uses: kitbagjs/actions-setup-project@main | |
| - name: Run tsc | |
| run: npm run types |