File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,11 @@ jobs:
28
28
- name : Set up Node
29
29
uses : actions/setup-node@v4
30
30
with :
31
+ cache : npm
31
32
node-version-file : ' .nvmrc'
32
33
33
34
- name : Install dependencies
34
- uses : bahmutov/ npm- install@v1
35
+ run : npm install
35
36
36
37
- name : Build package
37
38
run : npm run build
Original file line number Diff line number Diff line change @@ -19,10 +19,11 @@ jobs:
19
19
- name : Set up Node
20
20
uses : actions/setup-node@v4
21
21
with :
22
+ cache : npm
22
23
node-version-file : ' .nvmrc'
23
24
24
25
- name : Install dependencies
25
- uses : bahmutov/ npm- install@v1
26
+ run : npm install
26
27
27
28
- name : Run script
28
29
run : npm run ${{ matrix.validation-script }}
@@ -43,10 +44,11 @@ jobs:
43
44
- name : Set up Node
44
45
uses : actions/setup-node@v4
45
46
with :
47
+ cache : npm
46
48
node-version : ${{ matrix.node }}
47
49
48
50
- name : Install dependencies
49
- uses : bahmutov/ npm- install@v1
51
+ run : npm install
50
52
51
53
- name : Install ESLint v${{ matrix.eslint }}
52
54
run : npm install --no-save --force eslint@${{ matrix.eslint }}
You can’t perform that action at this time.
0 commit comments