From 73cdd9ca0cec8209e7010da583bc4545222afa33 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Fri, 5 Sep 2025 14:22:53 +0200 Subject: [PATCH] ci: fix setup node on windows Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0da6050..37e5420 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -153,12 +153,13 @@ jobs: name: Expose GitHub Runtime uses: crazy-max/ghaction-github-runtime@v3 - - # FIXME: Needs to setup node twice on Windows due to a bug with runner + # FIXME: Needs to setup node twice on Windows: https://github.com/actions/setup-node/issues/1357#issuecomment-3254613964 name: Setup Node if: startsWith(matrix.os, 'windows') uses: actions/setup-node@v5 with: node-version: ${{ env.NODE_VERSION }} + package-manager-cache: false - name: Enable corepack run: |