This commit is contained in:
Mati Dastugue 2020-08-05 15:17:49 -03:00
parent 704ea9b8d4
commit c73651980c
1 changed files with 11 additions and 0 deletions

View File

@ -49,3 +49,14 @@ jobs:
yarn install --frozen-lockfile --cache-folder ./.yarncache
rm -r .yarncache
yarn cache clean
- name: Remove and cache clean (Windows Only)
if: startsWith(matrix.os, 'windows')
shell: powershell
run: |
rm -r -Force .yarncache
yarn cache clean
- name: Remove and cache clean
if: "!startsWith(matrix.os, 'windows')"
run: |
rm -rf .yarncache
yarn cache clean