From a19384a91c878ca205ba1fb21a6a13dad12a7ced Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Thu, 25 Aug 2022 18:47:40 +0200 Subject: [PATCH] fix: e2e dependency install Signed-off-by: Renovate Bot Signed-off-by: Tilman Vatteroth --- .github/workflows/e2e.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 17fe37582..1fbf869c5 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -86,13 +86,11 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path - if: steps.build-cache.outputs.cache-hit != 'true' run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache uses: actions/cache@v3 id: yarn-cache - if: steps.build-cache.outputs.cache-hit != 'true' with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-16-yarn-${{ hashFiles('**/yarn.lock') }} @@ -100,7 +98,6 @@ jobs: ${{ runner.os }}-yarn-16 - name: Install dependencies - if: steps.build-cache.outputs.cache-hit != 'true' run: yarn install --immutable - name: Download built frontend