From 8381bcf17a26850d5f46f468818a65cd92d82e51 Mon Sep 17 00:00:00 2001 From: Steve Hansen Date: Mon, 13 Apr 2026 14:08:57 -0400 Subject: [PATCH] update CI to test on Node 18, 20, 22 with modern actions Co-Authored-By: Claude Opus 4.6 --- .github/workflows/nodejs.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 87738d3..aa95896 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,17 +16,16 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [18.x, 20.x, 22.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci - - run: npm install - run: npm run build - - run: npm run test + - run: npm run test:node env: CI: true