Update dependency @types/node to v22.17.0 (#202) #452
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/Build | |
| concurrency: | |
| group: testbuild-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| merge_group: {} | |
| jobs: | |
| test_build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| - name: Set up NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| check-latest: true | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Set up Emscripten | |
| uses: mymindstorm/setup-emsdk@v14 | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build | |
| - run: npm run testOnly | |
| - run: cp LICENSE dist/ | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dist | |
| path: dist/ |