From 420e0822b4631aa8187af7600d340180aeb37afe Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Sun, 17 Dec 2023 16:53:08 +0000 Subject: [PATCH] CI: Pin Node.js 18 to avoid npm 10 on 32-bit Windows npm 10 seems to be opening thousands of network connections, leading to resource starvation in Node.js 18. This does not appear to impact Node.js 20. --- .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 7f02f55fe..26325b8be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: platform: darwin-x64 - os: windows-2019 nodejs_arch: x86 - nodejs_version: "^18.17.0" + nodejs_version: "18.18.2" # pinned to avoid 18.19.0 and npm 10 nodejs_version_major: 18 platform: win32-ia32 prebuild: true