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