2017-01-26 11:49:39 -08:00
|
|
|
machine:
|
|
|
|
node:
|
2017-04-24 13:54:58 -04:00
|
|
|
version: 6
|
2017-01-26 11:49:39 -08:00
|
|
|
pre:
|
|
|
|
- mkdir ~/.yarn-cache
|
2017-04-24 13:54:58 -04:00
|
|
|
|
2017-01-26 11:49:39 -08:00
|
|
|
dependencies:
|
|
|
|
pre:
|
2017-02-06 07:28:42 +05:30
|
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
2017-01-26 11:49:39 -08:00
|
|
|
cache_directories:
|
|
|
|
- "~/.yarn-cache"
|
|
|
|
override:
|
|
|
|
- yarn install
|
|
|
|
- cd website && yarn install
|
2017-04-24 13:54:58 -04:00
|
|
|
|
2017-01-26 11:49:39 -08:00
|
|
|
deployment:
|
|
|
|
website-prod:
|
|
|
|
branch: master
|
|
|
|
commands:
|
|
|
|
- yarn run build-docs
|
|
|
|
- ./scripts/deploy-website.sh
|
2017-04-24 13:54:58 -04:00
|
|
|
|
|
|
|
test:
|
|
|
|
post:
|
2017-05-14 14:33:39 -07:00
|
|
|
- yarn codecov
|
2017-04-24 13:54:58 -04:00
|
|
|
- cd examples/NavigationPlayground && yarn add file:../.. && yarn install && yarn test
|
|
|
|
- cd examples/ReduxExample && yarn add file:../.. && yarn install && yarn test
|