2018-04-21 04:34:02 +08:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2019-03-27 11:31:52 +08:00
|
|
|
- '11.2'
|
2018-10-17 05:26:21 +08:00
|
|
|
install:
|
|
|
|
- npm install -g codecov
|
2018-10-17 05:37:28 +08:00
|
|
|
- npm install
|
2018-04-21 04:34:02 +08:00
|
|
|
script:
|
2019-03-11 03:58:22 +08:00
|
|
|
- npm run start -- --testMode
|
2018-11-17 12:24:53 +08:00
|
|
|
- npm run demo
|
2019-04-28 10:19:34 +08:00
|
|
|
- npm run coverage
|
2018-10-17 05:26:21 +08:00
|
|
|
- codecov
|
2018-10-15 12:43:05 +08: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
|