Fix test
This commit is contained in:
parent
704ea9b8d4
commit
c73651980c
|
@ -49,3 +49,14 @@ jobs:
|
||||||
yarn install --frozen-lockfile --cache-folder ./.yarncache
|
yarn install --frozen-lockfile --cache-folder ./.yarncache
|
||||||
rm -r .yarncache
|
rm -r .yarncache
|
||||||
yarn cache clean
|
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
|
||||||
|
|
Loading…
Reference in New Issue