From d5ba3e3109a7c854110842f9495b61bf6fc5c537 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Wed, 3 Jul 2024 13:31:30 +0200 Subject: [PATCH] Temporarily limit Node versions used in CI to dodge Node bug https://github.com/nodejs/node/issues/53075 results in crashes in test suite (not in cases relevant to most users) when using the latest Node v20 or v22, due to Buffer usage deep in wasm within zstd-codc subdependencies, which are challenging to resolve. For now, we just skip testing on the latest versions until this is resolved. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 376d5836c..babc14f07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x, 20.x, v20.11.1, 22.x, '*'] + node-version: [14.x, 16.x, 18.x, 20.14.x, v20.11.1, 22.1.x] steps: - uses: actions/checkout@v4