diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-08-14 07:49:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-14 07:49:50 +0800 |
commit | 283175df9827be38f8cc9f18d3914e3661456fc4 (patch) | |
tree | 569f4ce716ff15c533adb36021c9b95b5f27e24b /.circleci | |
parent | aeb368a1d92cd0f558db3e7456eccbb7cccd50aa (diff) | |
download | dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.tar dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.tar.gz dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.tar.bz2 dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.tar.lz dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.tar.xz dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.tar.zst dexon-sol-tools-283175df9827be38f8cc9f18d3914e3661456fc4.zip |
Run publish/installation tests in CircleCI (#951)
feat(monorepo-scripts): Run publish tests in CircleCI
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 13 |
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 |