From 34797f8457a85fc82bbb175bcbcab7a1491d36d4 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:46:43 +0100 Subject: [PATCH] chore(ci): add Node.js 23 to tested versions Windows tests are excluded --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d29ae4a7..5eb4bbfe4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,11 +49,19 @@ jobs: - 18 - 20 - 22 + - 23 platform: - ubuntu-latest - macos-latest - windows-latest + # Temporarily skipping Node.js 23 under Windows due to issue + # https://github.com/nodejs/corepack/issues/597 + # ci vitest fails "handle integrity checks" on Windows Node.js 23 + exclude: + - node: 23 + platform: windows-latest + name: "${{matrix.platform}} w/ Node.js ${{matrix.node}}.x" runs-on: ${{matrix.platform}}