diff options
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 1795a4bfc..10c5fc886 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,7 +52,20 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope contracts test:circleci + - run: yarn lerna:run --scope contracts test:circleci:contracts + test-deployer: + docker: + - image: circleci/node:6.12 + working_directory: ~/repo + steps: + - restore_cache: + keys: + - repo-{{ .Environment.CIRCLE_SHA1 }} + - run: + name: testrpc + command: npm run testrpc -- --db testrpc_snapshot + background: true + - run: yarn lerna:run --scope contracts test:circleci:deployer test-rest: docker: - image: circleci/node:6.12 @@ -95,12 +108,15 @@ workflows: - test-contracts: requires: - build - - test-rest: + - test-deployer: requires: - build - - lint: + - test-rest: requires: - build - prettier: requires: - build + - lint: + requires: + - build |