Unverified Commit 516174c6 authored by yann300's avatar yann300 Committed by GitHub

Circleci - cache node_modules

parent 4864d9cb
......@@ -24,7 +24,14 @@ jobs:
steps:
- checkout
- restore_cache:
keys:
- dep-bundle-{{ checksum "package.json" }}
- run: npm install
- save_cache:
key: dep-bundle-{{ checksum "package.json" }}
paths:
- /repo/node-modules
- run: npm run lint && npm run test && npm run downloadsolc && npm run make-mock-compiler && npm run setupremix && npm run build
- run: ./ci/browser_tests.sh
# - run: if [ $CIRCLE_BRANCH = 'master' ]; then ./ci/deploy_from_travis_master.sh; fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment