From 7ff0f557f692581003bff20419cbded8b66e7394 Mon Sep 17 00:00:00 2001 From: Ferran Buireu Date: Fri, 1 Nov 2024 09:14:23 +0100 Subject: [PATCH] ci: fix lock file cache --- .github/workflows/e2e.yml | 2 +- .github/workflows/ut.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index aa9f2093..5b533772 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -30,7 +30,7 @@ jobs: - name: Install correct Yarn version run: corepack prepare ${{ env.YARN_VERSION }} --activate - name: Install dependencies - run: yarn install --immutable + run: yarn install --immutable-cache - name: Install Playwright Browsers run: yarn playwright install --with-deps - name: Run E2E Tests diff --git a/.github/workflows/ut.yml b/.github/workflows/ut.yml index 8900baf1..fe8ddfc3 100644 --- a/.github/workflows/ut.yml +++ b/.github/workflows/ut.yml @@ -27,6 +27,6 @@ jobs: - name: Install correct Yarn version run: corepack prepare ${{ env.YARN_VERSION }} --activate - name: Install dependencies - run: yarn install --immutable + run: yarn install --immutable-cache - name: Execute Unit tests run: yarn test:ut