prettier/.travis.yml

31 lines
544 B
YAML
Raw Normal View History

2017-01-11 18:52:51 +03:00
---
language: node_js
node_js:
- 4
- stable
2017-01-11 18:52:51 +03:00
cache:
yarn: true
2017-01-11 18:52:51 +03:00
directories:
- node_modules
env:
- NODE_ENV=development
- NODE_ENV=production
matrix:
allow_failures:
- env: NODE_ENV=production
fast_finish: true
install:
- yarn install --production=false
before_script:
- if [ "${NODE_ENV}" = "production" ]; then yarn build; fi
script:
- yarn lint
- AST_COMPARE=1 yarn test -- --runInBand
#deploy:
# provider: script
# script: website/deploy.sh
# skip_cleanup: true
# on:
# branch: master
# node: stable