aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
blob: 3dc00bd03230df579dda37e690fcc01cc2dcbba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
    - yarn test:coverage
    - yarn report_test_coverage
    - if [ $CIRCLE_BRANCH = "master" ]; then yarn test:umd; fi
    - yarn lint