2018-04-20 16:34:02 -04:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2019-06-05 21:09:14 -04:00
|
|
|
- node
|
2018-10-16 17:26:21 -04:00
|
|
|
install:
|
|
|
|
- npm install -g codecov
|
2018-10-16 17:37:28 -04:00
|
|
|
- npm install
|
2018-04-20 16:34:02 -04:00
|
|
|
script:
|
2019-03-10 15:58:22 -04:00
|
|
|
- npm run start -- --testMode
|
2018-11-16 23:24:53 -05:00
|
|
|
- npm run demo
|
2019-04-27 22:19:34 -04:00
|
|
|
- npm run coverage
|
2018-10-16 17:26:21 -04:00
|
|
|
- codecov
|
2018-10-15 00:43:05 -04:00
|
|
|
after_success:
|
|
|
|
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
|
|
|
|
- chmod +x send.sh
|
|
|
|
- ./send.sh success $WEBHOOK_URL
|
|
|
|
after_failure:
|
|
|
|
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
|
|
|
|
- chmod +x send.sh
|
|
|
|
- ./send.sh failure $WEBHOOK_URL
|