Bump @types/node from 20.17.28 to 24.9.0 #228
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: Test TS | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 17.x, 18.x, 19.x, 20.x, 21.x, 22.x] | |
| name: Test TypeScript build | |
| steps: | |
| - name: Check node version | |
| run: node --version | |
| - uses: actions/checkout@v3.5.2 | |
| - name: Install NodeJS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Compile typescript | |
| uses: icrawl/action-tsc@v1 |