From 1f67d06847ec1d40fdedcf8f90b3979f9e30e8d3 Mon Sep 17 00:00:00 2001 From: Victor Adossi Date: Wed, 8 Oct 2025 23:46:53 +0900 Subject: [PATCH] fix(ci): temporarily downgrade windows runners from latest to 2022 After GitHub's change of the default windows runner it looks like componentize-js tests hang. While we should absoltuely fix/root-cause the windows issue, in the meantime this commit gets CI completing again. --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 804a580b..1611cd15 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -153,7 +153,8 @@ jobs: # - latest reenable when https://github.com/nodejs/node/issues/57172 is fixed os: - ubuntu-latest - - windows-latest + # NOTE: windows-2025 (which is now latest) seems to hang on test runs + - windows-2022 - macos-latest build-type: - 'release'