fix: e2e dependency install

Signed-off-by: Renovate Bot <bot@renovateapp.com>
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2022-08-25 18:47:40 +02:00
parent a41255a367
commit a19384a91c

View file

@ -86,13 +86,11 @@ jobs:
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
if: steps.build-cache.outputs.cache-hit != 'true'
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Cache yarn cache - name: Cache yarn cache
uses: actions/cache@v3 uses: actions/cache@v3
id: yarn-cache id: yarn-cache
if: steps.build-cache.outputs.cache-hit != 'true'
with: with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-16-yarn-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-16-yarn-${{ hashFiles('**/yarn.lock') }}
@ -100,7 +98,6 @@ jobs:
${{ runner.os }}-yarn-16 ${{ runner.os }}-yarn-16
- name: Install dependencies - name: Install dependencies
if: steps.build-cache.outputs.cache-hit != 'true'
run: yarn install --immutable run: yarn install --immutable
- name: Download built frontend - name: Download built frontend