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 * * *"