Skip to content

chore: add node v24 to supported engines #2691

chore: add node v24 to supported engines

chore: add node v24 to supported engines #2691

Workflow file for this run

name: Unit tests
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronize
concurrency:
group: pr-${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node:
- 20
- 22
- 24
steps:
- uses: actions/checkout@v4
- name: Setup PNPM
uses: dfinity/ci-tools/actions/setup-pnpm@main
with:
node_version: ${{ matrix.node }}
- run: pnpm build
- run: pnpm test
aggregate:
name: unit:required
if: ${{ always() }}
needs: [test]
runs-on: ubuntu-latest
steps:
- name: check e2e test result
if: ${{ needs.test.result != 'success' }}
run: exit 1