From cd0eef651d17b9951387fd959ddaa21c265584ed Mon Sep 17 00:00:00 2001 From: Tim Nunamaker Date: Mon, 4 Dec 2023 10:17:55 -0600 Subject: [PATCH 1/2] chore: Update compatible node version Signed-off-by: Tim Nunamaker --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3832bfb1..123eb331 100644 --- a/package.json +++ b/package.json @@ -160,6 +160,6 @@ }, "types": "./dist/index.d.ts", "engines": { - "node": ">=16 <=20" + "node": ">=16 <=21" } } From d38e03e42d813c9f8ada0cea0808f6acaaf4db2d Mon Sep 17 00:00:00 2001 From: Tim Nunamaker Date: Mon, 4 Dec 2023 11:34:27 -0600 Subject: [PATCH 2/2] Add Node.js 21 to the CI matrix Signed-off-by: Tim Nunamaker --- .github/workflows/nodejs-ci-action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index e28ce874..8505fd07 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [16.x, 18.x, 20.x, 21.x] steps: - uses: actions/checkout@v2