From 1380cd811e5efa557e0225233e9bb1fe564c93e7 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 18 Jan 2018 14:22:49 +0100 Subject: Fix CI config --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index d95940898..8c1c680fd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,7 +52,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope contracts test:circleci:contracts + - run: yarn lerna:run --scope contracts test:circleci test-deployer: docker: - image: circleci/node:6.12 @@ -65,7 +65,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope contracts test:circleci:deployer + - run: yarn lerna:run --scope deployer test:circleci test-rest: docker: - image: circleci/node:6.12 @@ -78,7 +78,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --ignore contracts --ignore 0x.js --ignore subproviders test:circleci + - run: yarn lerna:run --ignore contracts --ignore 0x.js --ignore deployer test:circleci lint: working_directory: ~/repo docker: -- cgit v1.2.3 From 9a7c4442d25b889b012e1972b6f6ed154599bfae Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 18 Jan 2018 14:34:35 +0100 Subject: Fix scopes --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index 8c1c680fd..17c4cc58d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,7 +65,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --scope deployer test:circleci + - run: yarn lerna:run --scope @0xproject/deployer test:circleci test-rest: docker: - image: circleci/node:6.12 @@ -78,7 +78,7 @@ jobs: name: testrpc command: npm run testrpc -- --db testrpc_snapshot background: true - - run: yarn lerna:run --ignore contracts --ignore 0x.js --ignore deployer test:circleci + - run: yarn lerna:run --ignore contracts --ignore 0x.js --ignore @0xproject/deployer test:circleci lint: working_directory: ~/repo docker: -- cgit v1.2.3