File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 19
19
cache : " npm"
20
20
21
21
- name : Install dependencies
22
- run : npm install
22
+ run : npm ci
23
23
24
24
- name : Run lint
25
25
run : npm run lint
37
37
cache : " npm"
38
38
39
39
- name : Install dependencies
40
- run : npm install
40
+ run : npm ci
41
41
42
42
- name : Verify typescript types
43
43
run : npm run typing-check
55
55
cache : " npm"
56
56
57
57
- name : Install dependencies
58
- run : npm install
58
+ run : npm ci
59
59
60
60
- name : Run code coverage
61
61
run : npm run coverage
Original file line number Diff line number Diff line change 72
72
cache : " npm"
73
73
74
74
- name : Install dependencies
75
- run : npm install
75
+ run : npm ci
76
76
77
77
- name : Run lint
78
78
run : npm run lint
@@ -128,7 +128,7 @@ verify-typescript-types:
128
128
cache: "npm"
129
129
130
130
- name: Install dependencies
131
- run: npm install
131
+ run: npm ci
132
132
133
133
- name: Verify typescript types
134
134
run: npm run typing-check
@@ -138,7 +138,7 @@ verify-typescript-types:
138
138
139
139
- `actions/setup-node@v4` : This action sets up the Node.js environment, including caching npm dependencies to speed up future runs.
140
140
141
- - `npm install ` : This installs the project's dependencies.
141
+ - `npm ci ` : This installs the project's dependencies from the package-lock .
142
142
143
143
- `npm run typing-check` : This runs the type-checking script to ensure there are no TypeScript errors in the code.
144
144
@@ -186,7 +186,7 @@ code-coverage:
186
186
cache: "npm"
187
187
188
188
- name: Install dependencies
189
- run: npm install
189
+ run: npm ci
190
190
191
191
- name: Run code coverage
192
192
run: npm run coverage
@@ -200,7 +200,7 @@ code-coverage:
200
200
201
201
- `actions/setup-node@v4` : This action sets up the Node.js environment, including caching npm dependencies to speed up future runs.
202
202
203
- - `npm install ` : This installs the project's dependencies.
203
+ - `npm ci ` : This installs the project's dependencies from the package-lock .
204
204
205
205
- `npm run coverage` : This command runs the tests and generates coverage reports.
206
206
You can’t perform that action at this time.
0 commit comments