From 2e276524003f526f28f6c9e66c0b9850de66cf8d Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Wed, 26 Feb 2025 08:35:38 -0500 Subject: [PATCH] WIP corepack on windows and vercel --- .github/workflows/build-apps.yml | 4 ++++ .github/workflows/e2e-tests.yml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/build-apps.yml b/.github/workflows/build-apps.yml index 025466967..20da5c135 100644 --- a/.github/workflows/build-apps.yml +++ b/.github/workflows/build-apps.yml @@ -126,6 +126,10 @@ jobs: cp prepared-files/assets/icon.ico assets/icon.ico cp prepared-files/assets/icon.png assets/icon.png + - name: Get exact Node.js version + run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV + shell: bash + - name: Clear hosted tool cache on Windows if: ${{ contains(matrix.os, 'windows') }} run: | diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 38fe1312e..fbb2235c1 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -54,6 +54,9 @@ jobs: - uses: actions/checkout@v4 with: token: ${{ steps.app-token.outputs.token }} + - name: Get exact Node.js version + run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV + shell: bash - name: Clear hosted tool cache on Windows if: ${{ contains(matrix.os, 'windows') }} run: |