File tree Expand file tree Collapse file tree 1 file changed +20
-20
lines changed Expand file tree Collapse file tree 1 file changed +20
-20
lines changed Original file line number Diff line number Diff line change 4
4
test :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v2
8
- - name : Setup Node.js
9
- uses : actions/setup-node@v1
10
- with :
11
- node-version : " 18.13.0"
7
+ - uses : actions/checkout@v2
8
+ - name : Setup Node.js
9
+ uses : actions/setup-node@v1
10
+ with :
11
+ node-version : " 18.13.0"
12
12
13
- - name : Cache node modules
14
- uses : actions/cache@v2
15
- env :
16
- cache-name : cache-node-modules
17
- with :
18
- path : ~/.npm
19
- key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
20
- restore-keys : |
21
- ${{ runner.os }}-build-${{ env.cache-name }}-
22
- ${{ runner.os }}-build-
23
- ${{ runner.os }}-
24
- - name : Install Dependencies
25
- run : npm install
13
+ - name : Cache node modules
14
+ uses : actions/cache@v2
15
+ env :
16
+ cache-name : cache-node-modules
17
+ with :
18
+ path : ~/.npm
19
+ key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
20
+ restore-keys : |
21
+ ${{ runner.os }}-build-${{ env.cache-name }}-
22
+ ${{ runner.os }}-build-
23
+ ${{ runner.os }}-
26
24
27
- - name : Run the tests
28
- run : npm test
25
+ - name : Install Dependencies
26
+ run : npm install
29
27
28
+ - name : Run the tests
29
+ run : npm test
You can’t perform that action at this time.
0 commit comments