From 40a645e90932fe1ce7f3ea1d3c7b0004e2eafa95 Mon Sep 17 00:00:00 2001 From: Matt Bailey Date: Wed, 18 Mar 2026 09:03:01 +0000 Subject: [PATCH] Add Node.js 24 to testing --- .github/workflows/jsonata.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/jsonata.yml b/.github/workflows/jsonata.yml index 76048c50..9c282654 100644 --- a/.github/workflows/jsonata.yml +++ b/.github/workflows/jsonata.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x, 24.x] steps: - name: Checkout uses: actions/checkout@v3 @@ -26,10 +26,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Use Node.js 22.x + - name: Use Node.js 24.x uses: actions/setup-node@v3 with: - node-version: 22.x + node-version: 24.x - name: Install and build run: npm install && npm test - name: Publish to NPM @@ -47,10 +47,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Use Node.js 22.x + - name: Use Node.js 24.x uses: actions/setup-node@v3 with: - node-version: 22.x + node-version: 24.x - name: Build documentation run: | cd website