1
0
mirror of https://github.com/ikatyang/emoji-cheat-sheet.git synced 2024-11-22 10:23:51 +01:00
emoji-cheat-sheet/.travis.yml

20 lines
244 B
YAML
Raw Normal View History

2017-03-17 18:10:09 +01:00
language: node_js
node_js:
2019-04-09 17:25:38 +02:00
- "8"
2017-03-17 18:10:09 +01:00
2017-07-15 17:42:52 +02:00
script:
2019-04-09 17:25:38 +02:00
- yarn lint
- yarn test --ci
2017-07-15 17:42:52 +02:00
2017-07-15 17:55:45 +02:00
after_success:
2017-07-15 18:19:14 +02:00
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then bash ./scripts/deploy.sh; fi
2017-07-15 17:55:45 +02:00
2017-03-17 18:10:09 +01:00
cache:
yarn: true
directories:
- node_modules
2017-07-15 17:42:52 +02:00
matrix:
fast_finish: true