run lerna bootstrap from circleci

pull/7/head
yann300 7 years ago
parent 92c4768b1f
commit 1ea16922dd
  1. 4
      .circleci/config.yml

@ -11,6 +11,7 @@ jobs:
working_directory: ~/repo working_directory: ~/repo
steps: steps:
- checkout - checkout
- run: npm install && npm run bootstrap
- run: cd remix-lib && npm install && npm test - run: cd remix-lib && npm install && npm test
remix-core: remix-core:
@ -20,6 +21,7 @@ jobs:
working_directory: ~/repo working_directory: ~/repo
steps: steps:
- checkout - checkout
- run: npm install && npm run bootstrap
- run: cd remix-core && npm install && npm test - run: cd remix-core && npm install && npm test
remix-solidity: remix-solidity:
@ -29,6 +31,7 @@ jobs:
working_directory: ~/repo working_directory: ~/repo
steps: steps:
- checkout - checkout
- run: npm install && npm run bootstrap
- run: cd remix-solidity && npm install && npm test - run: cd remix-solidity && npm install && npm test
remix-debug: remix-debug:
@ -38,6 +41,7 @@ jobs:
working_directory: ~/repo working_directory: ~/repo
steps: steps:
- checkout - checkout
- run: npm install && npm run bootstrap
- run: cd remix-debug && npm install && npm test - run: cd remix-debug && npm install && npm test
workflows: workflows:

Loading…
Cancel
Save