diff options
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml new file mode 100644 index 000000000..035b2e155 --- /dev/null +++ b/circle.yml @@ -0,0 +1,23 @@ +machine: + node: + version: 6.5.0 + environment: + CONTRACTS_COMMIT_HASH: '78fe8dd' + PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" + +dependencies: + override: + - yarn + cache_directories: + - ~/.cache/yarn + +test: + override: + - wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT_HASH}.zip + - unzip ${CONTRACTS_COMMIT_HASH}.zip -d testrpc_snapshot + - npm run testrpc -- --db testrpc_snapshot: + background: true + - lerna run test:coverage + - lerna run report_test_coverage + - if [ $CIRCLE_BRANCH = "master" ]; then lerna run test:umd; fi + - lerna run lint |