Skip to content

fix(ci): add Node 22 and 23 to test matrix #92

fix(ci): add Node 22 and 23 to test matrix

fix(ci): add Node 22 and 23 to test matrix #92

Workflow file for this run

on: [push, pull_request]
name: Run tests
jobs:
test:
strategy:
matrix:
node: [20, 22, 23]
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm i -g npm@latest
- run: npm ci
- run: npm test