Skip to content

Test

Test #2

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node_version }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
node_version:
- 22
- 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm test