Skip to content

update to node 22

update to node 22 #41

Workflow file for this run

name: Test Package
on: push
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
node_version: [ 18, 20, 22 ]
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ matrix.node_version }}
- name: Lint
run: npm run lint
shell: bash
- name: Typecheck
run: npm run typecheck
shell: bash
test:
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
matrix:
node_version: [ 18, 20, 22 ]
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ matrix.node_version }}
- name: Test
run: npm run test
shell: bash