chore: Fix CI pipeline (#1839)

This commit is contained in:
Sebastian Rindom
2022-07-12 20:14:34 +02:00
committed by GitHub
parent cf167d00b1
commit e539bdc620
15 changed files with 10585 additions and 33577 deletions

View File

@@ -10,14 +10,10 @@ runs:
id: cache
with:
path: |
node_modules
*/*/node_modules
.yarn/cache
key: ${{ runner.os }}-yarn-${{inputs.extension}}-v8-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-${{inputs.extension}}-v8
# We want to only bootstrap and install if no cache is found.
- run: |
if [[ "${{steps.cache.outputs.cache-hit}}" != "true" ]]; then
yarn install --immutable
fi
- run: yarn install --immutable
shell: bash