17
17
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
18
18
19
19
- name : Install Dependencies
20
- run : npm ci
20
+ run : npm ci --ignore-scripts
21
21
22
22
- name : Lint ESLint
23
23
run : npm run lint
62
62
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
63
63
64
64
- name : Run npm install
65
- run : npm install --engine-strict --strict-peer-deps
65
+ run : npm install --ignore-scripts -- engine-strict --strict-peer-deps
66
66
67
67
- name : Check that package-lock.json is in sync with package.json
68
68
run : git diff --exit-code package-lock.json
85
85
# so we skip cache action to not pollute cache for other jobs.
86
86
87
87
- name : Install Dependencies
88
- run : npm ci
88
+ run : npm ci --ignore-scripts
89
89
90
90
- name : Run Integration Tests
91
91
run : npm run check:integrations
@@ -104,7 +104,7 @@ jobs:
104
104
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
105
105
106
106
- name : Install Dependencies
107
- run : npm ci
107
+ run : npm ci --ignore-scripts
108
108
109
109
- name : Run Tests
110
110
run : npm run fuzzonly
@@ -123,7 +123,7 @@ jobs:
123
123
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
124
124
125
125
- name : Install Dependencies
126
- run : npm ci
126
+ run : npm ci --ignore-scripts
127
127
128
128
- name : Run tests and measure code coverage
129
129
run : npm run testonly:cover
@@ -152,7 +152,7 @@ jobs:
152
152
node-version : ${{ matrix.node_version_to_setup }}
153
153
154
154
- name : Install Dependencies
155
- run : npm ci
155
+ run : npm ci --ignore-scripts
156
156
157
157
- name : Run Tests
158
158
run : npm run testonly
@@ -173,7 +173,7 @@ jobs:
173
173
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
174
174
175
175
- name : Install Dependencies
176
- run : npm ci
176
+ run : npm ci --ignore-scripts
177
177
178
178
- name : Run Benchmark
179
179
run : ' npm run benchmark -- --revs HEAD HEAD~1'
@@ -194,7 +194,7 @@ jobs:
194
194
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
195
195
196
196
- name : Install Dependencies
197
- run : npm ci
197
+ run : npm ci --ignore-scripts
198
198
199
199
- name : Generate report
200
200
run : ' node resources/diff-npm-package.js $BASE_COMMIT HEAD'
@@ -227,7 +227,7 @@ jobs:
227
227
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
228
228
229
229
- name : Install Dependencies
230
- run : npm ci
230
+ run : npm ci --ignore-scripts
231
231
232
232
- name : Build NPM package
233
233
run : npm run build:npm
@@ -256,7 +256,7 @@ jobs:
256
256
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
257
257
258
258
- name : Install Dependencies
259
- run : npm ci
259
+ run : npm ci --ignore-scripts
260
260
261
261
- name : Build Deno package
262
262
run : npm run build:deno
0 commit comments