File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 14
14
with :
15
15
fetch-depth : 0
16
16
17
+ - name : Cache Node.js modules
18
+ uses : actions/cache@v3
19
+ with :
20
+ path : ~/.npm
21
+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
22
+ restore-keys : |
23
+ ${{ runner.os }}-node-
24
+
17
25
- name : Check for changes in migrations folder
18
26
id : check_changes
19
27
run : |
52
60
- name : Checkout repository
53
61
uses : actions/checkout@v4
54
62
63
+ - name : Cache Node.js modules
64
+ uses : actions/cache@v3
65
+ with :
66
+ path : ~/.npm
67
+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
68
+ restore-keys : |
69
+ ${{ runner.os }}-node-
70
+
55
71
- name : Set up Node.js
56
72
uses : actions/setup-node@v4
57
73
with :
77
93
- name : Checkout repository
78
94
uses : actions/checkout@v4
79
95
96
+ - name : Cache Node.js modules
97
+ uses : actions/cache@v3
98
+ with :
99
+ path : ~/.npm
100
+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
101
+ restore-keys : |
102
+ ${{ runner.os }}-node-
103
+
80
104
- name : Set up Node.js
81
105
uses : actions/setup-node@v4
82
106
with :
You can’t perform that action at this time.
0 commit comments