InstaContract/.travis.yml

22 lines
395 B
YAML
Raw Permalink Normal View History

2018-10-23 07:52:31 +00:00
sudo: required
language: node_js
node_js:
- "9"
cache:
directories:
- node_modules
install:
- npm install -g truffle@beta
- npm install -g ganache-cli
- npm install
script:
- npm run lint
- npm run solium
- npm run ganache
- sleep 5
- truffle migrate --network test
- truffle test
- npm run stop
after_script:
- npm run coverage && cat coverage/lcov.info | coveralls