You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/config.yml
-75Lines changed: 0 additions & 75 deletions
Original file line number
Diff line number
Diff line change
@@ -311,27 +311,6 @@ jobs:
311
311
- store_artifacts:
312
312
path: ./tmp/screenshots
313
313
314
-
yarn_lint_build:
315
-
docker: *docker
316
-
environment: *environment
317
-
steps:
318
-
- checkout
319
-
- attach_workspace:
320
-
at: .
321
-
- setup_node_modules
322
-
- run: yarn lint-build
323
-
324
-
yarn_check_release_dependencies:
325
-
docker: *docker
326
-
environment: *environment
327
-
steps:
328
-
- checkout
329
-
- attach_workspace:
330
-
at: .
331
-
- setup_node_modules
332
-
- run: yarn check-release-dependencies
333
-
334
-
335
314
check_error_codes:
336
315
docker: *docker
337
316
environment: *environment
@@ -345,20 +324,6 @@ jobs:
345
324
yarn extract-errors
346
325
git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
347
326
348
-
yarn_test_build:
349
-
docker: *docker
350
-
environment: *environment
351
-
parallelism: *TEST_PARALLELISM
352
-
parameters:
353
-
args:
354
-
type: string
355
-
steps:
356
-
- checkout
357
-
- attach_workspace:
358
-
at: .
359
-
- setup_node_modules
360
-
- run: yarn test --build <<parameters.args>> --ci=circleci
361
-
362
327
RELEASE_CHANNEL_stable_yarn_test_dom_fixtures:
363
328
docker: *docker
364
329
environment: *environment
@@ -421,40 +386,6 @@ workflows:
421
386
requires:
422
387
- scrape_warning_messages
423
388
- yarn_build
424
-
- yarn_test_build:
425
-
requires:
426
-
- yarn_build
427
-
matrix:
428
-
parameters:
429
-
args:
430
-
# Intentionally passing these as strings instead of creating a
431
-
# separate parameter per CLI argument, since it's easier to
432
-
# control/see which combinations we want to run.
433
-
- "-r=stable --env=development"
434
-
- "-r=stable --env=production"
435
-
- "-r=experimental --env=development"
436
-
- "-r=experimental --env=production"
437
-
438
-
# Dev Tools
439
-
- "--project=devtools -r=experimental"
440
-
441
-
# TODO: Update test config to support www build tests
0 commit comments