2018-04-20 16:34:02 -04:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2019-03-06 20:13:32 -05:00
|
|
|
- '11.10.1'
|
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:
|
2018-10-16 17:26:21 -04:00
|
|
|
- npm run test -- --coverage
|
2018-11-16 23:24:53 -05:00
|
|
|
- npm run demo
|
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
|