Skip to content

chore(deps): update node.js to v22.21.0 #831

chore(deps): update node.js to v22.21.0

chore(deps): update node.js to v22.21.0 #831

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: ['**']
permissions:
contents: read
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Install modules
run: npm install
- name: Build
run: npm run build --if-present
- name: Run tests
run: npm run test --if-present