Skip to content

chore(deps): update dependency node to v24 #746

chore(deps): update dependency node to v24

chore(deps): update dependency node to v24 #746

Workflow file for this run

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