Skip to content

build: Add Node 24

build: Add Node 24 #37

Workflow file for this run

name: CI
on:
- push
- pull_request
# A workflow is made up of one or more jobs
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
# Recent LTS
- node: 24.18.x
- node: 24.14.x
- node: 22.x
# Provided by Debian 13 Trixie LTS
- node: 20.x
# Provided by Debian 12 Bookworm LTS
- node: 18.x
# Provided by Debian 11 Bullseye LTS
- node: 12.x
# Provided by Debian 10 Buster LTS
- node: 10.x
name: "Test Node.js ${{ matrix.node }} "
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test