From 0bb61da8604928204bd73f0d18721e672fda1621 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 27 Feb 2018 21:01:00 -0700 Subject: [PATCH] adjusted build pipelin --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 292bec375..7221160bf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -108,7 +108,18 @@ jobs: # chrome headless. test_integration_chrome_local: <<: *integration_job + environment: + <<: *integration_environment + E2E_BROWSERS: chrome + # test_integration_firefox_local will run the integration tests locally with + # firefox headless. + test_integration_firefox_local: + <<: *integration_job + environment: + <<: *integration_environment + E2E_BROWSERS: firefox + # test_integration_chrome will run the integration tests with chrome in # browserstack. test_integration_chrome: @@ -171,6 +182,9 @@ workflows: - test_integration_chrome_local: requires: - build_assets + - test_integration_firefox_local: + requires: + - build_assets deploy-tagged: jobs: - npm_dependencies: