File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
.github/actions/setup-deps Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 7
7
- name : Setup Node.js
8
8
uses : actions/setup-node@v3
9
9
with :
10
- node-version : 18
10
+ node-version-file : .nvmrc
11
11
12
12
- name : Cache deps
13
13
id : yarn-cache
14
14
uses : actions/cache@v3
15
15
with :
16
- path : ./node_modules
17
- key : ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
16
+ path : |
17
+ **/node_modules
18
+ .yarn/install-state.gz
19
+ key : ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
20
+ restore-keys : |
21
+ ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
22
+ ${{ runner.os }}-yarn-
18
23
19
24
- name : Install deps
20
25
if : steps.yarn-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change
1
+ lts/*
You can’t perform that action at this time.
0 commit comments