Skip to content

add node 22 in CI

add node 22 in CI #46

Workflow file for this run

name: ci
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node: [16.16.0, 18.5.0, 18.20.4, 20.18.0, 22.9.0]
name: Node ${{ matrix.node }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test