Merge pull request #773 from ethereum/yann300-patch-5

Remove uneeded `npm install`
pull/7/head
yann300 7 years ago committed by GitHub
commit bc14b30106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .circleci/config.yml

@ -12,7 +12,7 @@ jobs:
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-lib && npm install && npm test
- run: cd remix-lib && npm test
remix-core:
docker:
@ -22,7 +22,7 @@ jobs:
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-core && npm install && npm test
- run: cd remix-core && npm test
remix-solidity:
docker:
@ -32,7 +32,7 @@ jobs:
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-solidity && npm install && npm test
- run: cd remix-solidity && npm test
remix-debug:
docker:
@ -42,7 +42,7 @@ jobs:
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-debug && npm install && npm test
- run: cd remix-debug && npm test
workflows:
version: 2

Loading…
Cancel
Save