From ad3ba1f7b93c2835e083b62445a932dc436a0c19 Mon Sep 17 00:00:00 2001 From: Tom French Date: Tue, 10 Oct 2023 10:43:17 +0100 Subject: [PATCH] chore(ci): always run `yarn install` to validate yarn.lock --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 5efe115ddcf..751dee428c0 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -10,7 +10,7 @@ runs: with: path: "**/node_modules" key: yarn-v1-${{ hashFiles('**/yarn.lock') }} + # We run this step unconditionally to validate that the yarn.lock file is accurate - name: Install run: yarn --immutable shell: bash - if: steps.cache.outputs.cache-hit != 'true'