From 1fbcc3ba1450b9655d9a249661b5d69b25e2c8df Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Sun, 27 Apr 2025 01:58:17 -0700 Subject: [PATCH] [ci] more debugging --- .github/actions/build/action.yml | 3 --- .github/workflows/ci.yml | 2 ++ .github/workflows/release.yml | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 677921de..5afc6cfa 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -119,9 +119,6 @@ runs: - name: Run E2E Tests shell: bash - env: - # Due to permissions issues, Windows needs cache turned off - AVA_CACHE: ${{ runner.os == 'Windows' && 'false' || 'true' }} if: runner.os != 'Linux' run: yarn run test:e2e --verbose diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29fd960f..e8c6f7f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,6 +79,8 @@ jobs: env: NODE_VERSION: ${{ env.NODE_VERSION }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Due to permissions issues, Windows needs cache turned off + AVA_CACHE: false with: node-version: ${{ env.NODE_VERSION }} matrix-os: windows-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d1b9f1c8..f38f81c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,6 +69,8 @@ jobs: env: NODE_VERSION: ${{ env.NODE_VERSION }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Due to permissions issues, Windows needs cache turned off + AVA_CACHE: false with: node-version: ${{ env.NODE_VERSION }} matrix-os: windows-latest