diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2019-03-29 00:43:11 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2019-03-29 21:43:39 +0800 |
commit | 7fc84f3cc087deab5d937ee589de56fa40cd7ced (patch) | |
tree | f488cdb5c911eec2fd3d43c73e20628ad8d10841 /.circleci | |
parent | 99f53f582704f8bb65b5b321ebe91c5bfd5fe952 (diff) | |
download | tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.tar tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.tar.gz tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.tar.bz2 tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.tar.lz tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.tar.xz tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.tar.zst tangerine-wallet-browser-7fc84f3cc087deab5d937ee589de56fa40cd7ced.zip |
ci: Add build:test Gulp task for e2e build
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 807ed042c..686a996c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,11 +23,9 @@ workflows: - test-e2e-chrome: requires: - prep-deps-npm - - prep-build - test-e2e-firefox: requires: - prep-deps-npm - - prep-build # - test-e2e-beta-drizzle: # requires: # - prep-deps-npm @@ -191,7 +189,8 @@ jobs: at: . - run: name: test:e2e:chrome - command: npm run test:e2e:chrome + command: npm run build:test && npm run test:e2e:chrome + no_output_timeout: 20m - store_artifacts: path: test-artifacts destination: test-artifacts @@ -208,7 +207,8 @@ jobs: at: . - run: name: test:e2e:firefox - command: npm run test:e2e:firefox + command: npm run build:test && npm run test:e2e:chrome + no_output_timeout: 20m - store_artifacts: path: test-artifacts destination: test-artifacts |