File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 14
14
uses : actions/cache@v3
15
15
with :
16
16
path : |
17
- ** /node_modules
17
+ . /node_modules
18
18
.yarn/install-state.gz
19
19
key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
20
20
restore-keys : |
Original file line number Diff line number Diff line change 13
13
id : yarn-cache-website
14
14
uses : actions/cache@v3
15
15
with :
16
- path : ./website/node_modules
17
- key : ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}-website
16
+ path : |
17
+ ./website/node_modules
18
+ ./website/yarn/install-state.gz
19
+ key : website-${{ runner.os }}-yarn-${{ hashFiles('./website/yarn.lock') }}
18
20
19
21
- name : Install website deps
20
22
if : steps.yarn-cache-website.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments