Build/test dist/ on Travis (#2176)

This helps us keep track of whether or not the dist/ build actually
works (see https://github.com/prettier/prettier/pull/2174). Note that
the dist/ jobs are allowed to fail, and do not affect overall build
time, so they shouldn't slow anything down (see
https://blog.travis-ci.com/2013-11-27-fast-finishing-builds/).
master
Joseph Frazier 2017-06-17 19:37:51 -04:00 committed by Christopher Chedeau
parent 33a1c713d5
commit 532ac0d3f8
1 changed files with 11 additions and 0 deletions

View File

@ -8,6 +8,17 @@ cache:
yarn: true
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