@@ -131,7 +131,7 @@ jobs:
131
131
command : npx commitlint --from=origin/master
132
132
- run :
133
133
name : Lint code style
134
- command : npm run lint -- --ignore-pattern e2e/
134
+ command : npm run lint -- --ignore-pattern e2e/ --ignore-pattern tests-e2e/
135
135
- run :
136
136
name : Lint typescript
137
137
command : npm run ts:check
@@ -190,7 +190,17 @@ jobs:
190
190
steps :
191
191
- checkout
192
192
- restore_cache :
193
- key : root-<< pipeline.parameters.lockindex >>-{{ arch }}-{{ checksum "package-lock.json" }}
193
+ key : tests-e2e-<< pipeline.parameters.lockindex >>-{{ arch }}-{{ checksum "tests-e2e/package-lock.json" }}
194
+ - run :
195
+ name : NPM Install
196
+ command : |
197
+ if [ ! -d "./tests-e2e/node_modules/" ]; then
198
+ npm run i:tests-e2e
199
+ fi
200
+ - save_cache :
201
+ key : tests-e2e-<< pipeline.parameters.lockindex >>-{{ arch }}-{{ checksum "tests-e2e/package-lock.json" }}
202
+ paths :
203
+ - ./tests-e2e/node_modules
194
204
- run :
195
205
name : E2E
196
206
command : npm run e2e
@@ -247,9 +257,6 @@ jobs:
247
257
- run :
248
258
name : MockRender
249
259
command : KARMA_SUITE=tests-performance/mock-render.spec.ts npm run test
250
- - run :
251
- name : Large Modules
252
- command : KARMA_SUITE=tests-performance/ng-mocks.spec.ts npm run test
253
260
IE :
254
261
executor :
255
262
name : win/default
@@ -267,6 +274,9 @@ jobs:
267
274
- matches :
268
275
pattern : ' (renovate|dependabot/npm_and_yarn)/docs/.*'
269
276
value : << pipeline.git.branch >>
277
+ - matches :
278
+ pattern : ' (renovate|dependabot/npm_and_yarn)/tests-e2e/.*'
279
+ value : << pipeline.git.branch >>
270
280
- matches :
271
281
pattern : ' master|alpha|beta|next|rc'
272
282
value : << pipeline.git.branch >>
@@ -420,6 +430,8 @@ workflows:
420
430
- rc
421
431
- /renovate\/docs\/.*/
422
432
- /dependabot\/npm_and_yarn\/docs\/.*/
433
+ - /renovate\/tests-e2e\/.*/
434
+ - /dependabot\/npm_and_yarn\/tests-e2e\/.*/
423
435
- Performance :
424
436
name : core:performance
425
437
requires :
0 commit comments