This repository was archived by the owner on Jan 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 28
28
uses : actions/setup-node@v2
29
29
with :
30
30
node-version : ${{ matrix.node-version }}
31
- cache : " yarn"
31
+
32
+ - name : Cache Yarn
33
+ uses : actions/cache@v2
34
+ with :
35
+ path : ${{ github.workspace }}/.yarn
36
+ key : ci-v1-${{ matrix.node-version }}-${{ hashFiles('yarn.lock') }}
37
+ restore-keys : |
38
+ ci-v1-${{ matrix.node-version }}-
32
39
33
40
- name : Setup yarn
34
41
run : yarn install --immutable --inline-builds
Original file line number Diff line number Diff line change @@ -162,7 +162,14 @@ jobs:
162
162
uses : actions/setup-node@v2
163
163
with :
164
164
node-version : ${{ matrix.node-version }}
165
- cache : " yarn"
165
+
166
+ - name : Cache Yarn
167
+ uses : actions/cache@v2
168
+ with :
169
+ path : ${{ github.workspace }}/.yarn
170
+ key : e2e-tests-v1-${{ matrix.os }}-${{ matrix.node-version }}-${{ matrix.app }}-${{ hashFiles('yarn.lock') }}
171
+ restore-keys : |
172
+ e2e-tests-v1-${{ matrix.os }}-${{ matrix.node-version }}-${{ matrix.app }}-
166
173
167
174
# - name: "Download build"
168
175
# uses: actions/download-artifact@v2
You can’t perform that action at this time.
0 commit comments