Browse Source

clean yarn cache in ci

Eugene Pankov 6 years ago
parent
commit
4bf67b0904

+ 1 - 0
.github/workflows/docs.yml

@@ -17,6 +17,7 @@ jobs:
       run: |
         eval $(ssh-agent -s)
         ssh-add <(echo "$DOCS_PRIVATE_KEY")
+        yarn cache clean
         cd app
         yarn
         cd ..

+ 1 - 0
.github/workflows/lint.yml

@@ -15,6 +15,7 @@ jobs:
 
     - name: Install deps
       run: |
+        yarn cache clean
         cd app
         yarn
         cd ..

+ 1 - 0
.github/workflows/linux.yml

@@ -15,6 +15,7 @@ jobs:
 
     - name: Install deps
       run: |
+        yarn cache clean
         cd app
         yarn
         cd ..

+ 1 - 0
.github/workflows/macos.yml

@@ -16,6 +16,7 @@ jobs:
     - name: Install deps
       run: |
         cd app
+        yarn cache clean
         yarn
         cd ..
         rm app/node_modules/.yarn-integrity

+ 1 - 0
.github/workflows/windows.yml

@@ -16,6 +16,7 @@ jobs:
     - name: Build
       shell: powershell
       run: |
+        yarn cache clean
         yarn
         node scripts/build-native.js
         yarn run build