From 624e4cdec8cb659d9c1e9852674d04ffd5cfddab Mon Sep 17 00:00:00 2001 From: Peter Myers Date: Wed, 19 Nov 2025 10:38:09 -0500 Subject: [PATCH 1/2] Update CI github workflow to support node 22 in versions matrix. --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- .gitignore | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 9b48e57c..692bb627 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 22.x registry-url: https://registry.npmjs.org/ # Ensure npm 11.5.1 or later is installed - name: Update npm diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03126bb4..87852514 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x] + node-version: [18.x, 20.x, 22.x] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/.gitignore b/.gitignore index 88c607e9..ef81d5a5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ lib coverage .npmrc *.tgz +.nvmrc From 7e7c708bf15078ef1b3d0f4e924a223fb8a9a948 Mon Sep 17 00:00:00 2001 From: Peter Myers Date: Mon, 24 Nov 2025 09:04:08 -0500 Subject: [PATCH 2/2] Add node 24.x to test matrix. --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 692bb627..bf5ae1d3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 22.x + node-version: 24.x registry-url: https://registry.npmjs.org/ # Ensure npm 11.5.1 or later is installed - name: Update npm diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87852514..7ed03073 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [20.x, 22.x, 24.x] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4