Bump @types/node from 18.19.130 to 24.9.0 #111
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: Continuous Integration | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 18 | |
| - 20 | |
| - 22 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Check linter | |
| run: yarn lint | |
| - name: Run tests | |
| run: yarn test-ci |