chore(deps): update dependency node to v24 #746
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: run tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@releases/v4.0.0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: npm ci | |
| uses: nick-fields/retry@v3.0.2 | |
| with: | |
| max_attempts: 10 | |
| timeout_minutes: 15 | |
| retry_on: error | |
| command: npm ci | |
| - name: Update client | |
| run: npm run client:openapi && npm run client:generate | |
| - name: Check types | |
| run: npm run typecheck | |
| - name: Run build | |
| run: npm run build | |
| - name: Run tests | |
| run: npm test |