emoji-cheat-sheet/.travis.yml

20 lines
274 B
YAML
Raw Normal View History

2017-03-18 01:10:09 +08:00
language: node_js
node_js:
2017-07-15 22:51:15 +08:00
- stable
2017-03-18 01:10:09 +08:00
2017-07-15 23:42:52 +08:00
script:
- yarn run lint
- yarn run test -- --verbose --coverage
2017-07-15 23:55:45 +08:00
after_success:
2017-07-16 00:19:14 +08:00
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then bash ./scripts/deploy.sh; fi
2017-07-15 23:55:45 +08:00
2017-03-18 01:10:09 +08:00
cache:
yarn: true
directories:
- node_modules
2017-07-15 23:42:52 +08:00
matrix:
fast_finish: true