aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 43e542a86..a6fb511b9 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -56,6 +56,16 @@ jobs:
# HACK(albrow): we need to sleep 10 seconds to ensure the devnet is
# initialized
- run: sleep 10 && TEST_PROVIDER=geth yarn wsrun test contracts
+ test-publish:
+ docker:
+ - image: circleci/node:9
+ - image: verdaccio/verdaccio
+ working_directory: ~/repo
+ steps:
+ - restore_cache:
+ keys:
+ - repo-{{ .Environment.CIRCLE_SHA1 }}
+ - run: yarn test:publish:circleci
test-rest:
docker:
- image: circleci/node:9
@@ -232,6 +242,9 @@ workflows:
- static-tests:
requires:
- build
+ - test-publish:
+ requires:
+ - build
- submit-coverage:
requires:
- test-rest