Skip to content

👷 Add node 22 to CI test job #199

👷 Add node 22 to CI test job

👷 Add node 22 to CI test job #199

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "22"
- "20"
- "18"
- "16"
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test