aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-08-13 23:59:10 +0800
committerGitHub <noreply@github.com>2019-08-13 23:59:10 +0800
commit6bc10778804ca45dfa089a180f14bbbee346e37d (patch)
tree24c9d95fbb019ac92d96153909b832c93196ccac /.circleci
parente321feb92df92f7581ccc468dd735937ce3d4d9a (diff)
downloadtangerine-wallet-browser-6bc10778804ca45dfa089a180f14bbbee346e37d.tar.gz
tangerine-wallet-browser-6bc10778804ca45dfa089a180f14bbbee346e37d.tar.zst
tangerine-wallet-browser-6bc10778804ca45dfa089a180f14bbbee346e37d.zip
Make Coveralls its own optional CI job (#7002)
* ci: Move Coveralls into optional step * Split Coveralls step out of test:coverage npm script
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 2bd2b8a4c..1aff6dde9 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -74,6 +74,9 @@ workflows:
- prep-build
# - prep-docs
- all-tests-pass
+ - coveralls-upload:
+ requires:
+ - test-unit
jobs:
create_release_pull_request:
@@ -303,6 +306,17 @@ jobs:
name: All Tests Passed
command: echo 'weew - everything passed!'
+ coveralls-upload:
+ docker:
+ - image: circleci/node:10.16-browsers
+ steps:
+ - checkout
+ - attach_workspace:
+ at: .
+ - run:
+ name: Coveralls upload
+ command: yarn test:coveralls-upload
+
create_github_release:
docker:
- image: circleci/node:8.15.1-browsers