simple-keyboard/.travis.yml

18 lines
486 B
YAML
Raw Normal View History

2018-04-21 04:34:02 +08:00
language: node_js
node_js:
- "node"
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:
2018-10-17 05:26:21 +08:00
- npm run test -- --coverage
2018-11-17 12:24:53 +08:00
- npm run demo
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