mirror of
https://github.com/Instadapp/InstaContract.git
synced 2024-07-29 22:47:45 +00:00
22 lines
395 B
YAML
22 lines
395 B
YAML
|
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
|