Skip to content

docs: sync Node version references to 20.19+ #57

docs: sync Node version references to 20.19+

docs: sync Node version references to 20.19+ #57

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20, 22, 24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: node --check src/index.js
- name: test suite
run: node scripts/run-tests.mjs