From 484c990a3b0a70aa7cf6e1f8d9aa55d40d8e5a7a Mon Sep 17 00:00:00 2001 From: Clark Du Date: Wed, 27 Nov 2019 20:26:37 +0000 Subject: [PATCH] chore(ci): add requires for test-dev --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d8b06cf01f..e734905f2b 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -137,6 +137,7 @@ jobs: - run: name: Dev Tests command: yarn test:dev -w=2 + - store-test-results test-unit: executor: node @@ -201,7 +202,7 @@ workflows: - test-unit: { requires: [build] } - test-e2e: { requires: [build] } - release-commit: - requires: [build, lint, lint-app, audit, test-unit, test-e2e] + requires: [build, lint, lint-app, audit, test-dev, test-unit, test-e2e] filters: <<: *release_branches @@ -217,7 +218,7 @@ workflows: - test-unit: { requires: [build] } - test-e2e: { requires: [build] } - release-nightly: - requires: [build, lint, lint-app, audit, test-unit, test-e2e] + requires: [build, lint, lint-app, audit, test-dev, test-unit, test-e2e] triggers: - schedule: cron: "0 0 * * *"