prettier/.travis.yml

25 lines
473 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:
fast_finish: true
install:
- NODE_ENV=development yarn install
before_script:
- yarn check-deps
- if [ "${NODE_ENV}" = "production" ]; then yarn build; fi
script:
- yarn lint
- yarn lint-docs
- AST_COMPARE=1 yarn test -- --runInBand
- if [ "${NODE_ENV}" = "development" ]; then yarn codecov; fi