File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change 6
6
strategy :
7
7
matrix :
8
8
os : [ ubuntu-latest ]
9
- node-version : [ 18 ]
10
9
11
10
runs-on : ${{ matrix.os }}
12
11
13
12
steps :
14
13
- name : Checkout
15
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v4
16
15
- name : Use Node.js
17
- uses : actions/setup-node@v2
16
+ uses : actions/setup-node@v4
18
17
with :
19
- node-version : ${{ matrix.node-version }}
20
- - name : Cache Node.js modules
21
- uses : actions/cache@v2
22
- with :
23
- # npm cache files are stored in `~/.npm` on Linux/macOS
24
- path : ~/.npm
25
- key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
26
- restore-keys : |
27
- ${{ runner.OS }}-node-
28
- ${{ runner.OS }}-
18
+ node-version : 20
19
+ cache : ' npm'
29
20
- name : Install dependencies
30
21
run : npm ci
31
22
- name : Setup project
You can’t perform that action at this time.
0 commit comments