Skip to content

Add nodejs v23 to test matrix #16

Add nodejs v23 to test matrix

Add nodejs v23 to test matrix #16

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
strategy:
matrix:
version: [18, 20, 22, 23]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- run: npm install
- run: npm test