Skip to content

CI: Ensure all Node.js LTS versions from 14 onwards #41

CI: Ensure all Node.js LTS versions from 14 onwards

CI: Ensure all Node.js LTS versions from 14 onwards #41

Workflow file for this run

name: CI
on:
- push
- pull_request
permissions: {}
jobs:
test:
permissions:
contents: read
runs-on: ubuntu-24.04
strategy:
matrix:
node-version:
- 14
- 16
- 18
- 20
- 22
- 24
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- run: npm test