File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed 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