diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-14 01:20:58 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-11-14 01:20:58 +0800 |
commit | 8a0ae68f27e942f125343216b7d59e3c906f8b1e (patch) | |
tree | f238a454fad8b558e429dce8d32eb424a483cb03 /.circleci/config.yml | |
parent | 06ada873700327b2701969aabbc212d164ca7682 (diff) | |
download | dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.tar dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.tar.gz dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.tar.bz2 dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.tar.lz dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.tar.xz dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.tar.zst dexon-sol-tools-8a0ae68f27e942f125343216b7d59e3c906f8b1e.zip |
remove unnecessary --
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d874c07a..1d6122dd5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,12 +19,12 @@ jobs: - run: wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT_HASH}.zip - run: unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot - run: node ./node_modules/lerna/bin/lerna.js bootstrap - - run: yarn lerna:run -- bootstrap + - run: yarn lerna:run bootstrap - run: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run -- test:coverage - - run: yarn lerna:run -- report_test_coverage - - run: if [ $CIRCLE_BRANCH = "master" ]; then yarn lerna:run -- test:umd; fi - - run: yarn lerna:run -- lint + - run: yarn lerna:run test:coverage + - run: yarn lerna:run report_test_coverage + - run: if [ $CIRCLE_BRANCH = "master" ]; then yarn lerna:run test:umd; fi + - run: yarn lerna:run lint |