From 867ca3a9e9379dbea9e32aca49b5d02ceb66d813 Mon Sep 17 00:00:00 2001 From: Jake Love Date: Mon, 16 Oct 2023 17:46:00 -0700 Subject: [PATCH] remove cache folder flag in yarn CI --- .github/workflows/main.yml | 2 +- .github/workflows/pull-request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 993e1e6c4a2..b828d15fdb5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,7 +69,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: | yarn cache clean - yarn install --cache-folder ~/.cache/yarn --immutable + yarn install --immutable env: CYPRESS_INSTALL_BINARY: 0 # skipping big Cypress binary download. may cause problems later & need to remove or handle other ways. trying to keep CI speedy - name: Run Full Build diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 001ed394653..1413d74d2c8 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -40,7 +40,7 @@ jobs: # This command clears the cache before installing dependences run: | yarn cache clean - yarn install --cache-folder ~/.cache/yarn --immutable + yarn install --immutable env: CYPRESS_INSTALL_BINARY: 0 # skipping big Cypress binary download. may cause problems later & need to remove or handle other ways. trying to keep CI speedy - name: Run Full Build