File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v2
18
+ - name : Cache node_modules
19
+ uses : actions/cache@v2
20
+ with :
21
+ path : ' **/node_modules'
22
+ key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
18
23
- name : Setup Node.js
19
24
uses : actions/setup-node@v1
20
25
with :
30
35
steps :
31
36
- name : Checkout
32
37
uses : actions/checkout@v2
38
+ - name : Cache node_modules
39
+ uses : actions/cache@v2
40
+ with :
41
+ path : ' **/node_modules'
42
+ key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
33
43
- name : Setup Node.js
34
44
uses : actions/setup-node@v1
35
45
with :
46
56
steps :
47
57
- name : Checkout
48
58
uses : actions/checkout@v2
59
+ - name : Cache node_modules
60
+ uses : actions/cache@v2
61
+ with :
62
+ path : ' **/node_modules'
63
+ key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
49
64
- name : Setup Node.js
50
65
uses : actions/setup-node@v1
51
66
with :
You can’t perform that action at this time.
0 commit comments