aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
blob: 3db83209d9a30dc7de49a21ff1282cfd6ff14ab0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
machine:
  node:
    version: 6.1.0
  environment:
      CONTRACTS_COMMIT: cd04d7c

test:
  override:
    - wget https://s3.amazonaws.com/testrpc-shapshots/${CONTRACTS_COMMIT}.zip
    - unzip ${CONTRACTS_COMMIT}.zip -d testrpc_snapshot
    - npm run testrpc -- --db testrpc_snapshot:
        background: true
    - npm run test:coverage
    - npm run report_test_coverage
    - npm run test:umd
    - npm run lint