Skip to content

20.0.0

20.0.0 #115

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
# Explicitly test minimum Node.js versions. Keep in sync with package.json.
- 22.14.0
- 22
- 24.0.0
- lts/* # currently 24
- latest # currently 25
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test