mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-19 08:32:57 +08:00
17 lines
471 B
YAML
17 lines
471 B
YAML
language: node_js
|
|
node_js:
|
|
- "node"
|
|
install:
|
|
- npm install -g codecov
|
|
- npm install
|
|
script:
|
|
- npm run test -- --coverage
|
|
- codecov
|
|
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 |