2018-03-12 08:30:03 +00:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
|
|
- "8"
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
before_script:
|
2018-03-15 10:14:20 +00:00
|
|
|
- yarn global add surge
|
2018-05-31 18:10:45 +00:00
|
|
|
- export NODE_ENV=testing
|
2018-03-12 08:30:03 +00:00
|
|
|
after_success:
|
|
|
|
- |
|
|
|
|
if [ ${TRAVIS_BRANCH} = "master" ]; then
|
|
|
|
export NODE_ENV=production;
|
|
|
|
else
|
|
|
|
export NODE_ENV=development;
|
|
|
|
fi
|
2018-05-31 18:10:45 +00:00
|
|
|
- yarn build-storybook
|
|
|
|
- yarn build
|
2018-03-15 10:14:20 +00:00
|
|
|
- cd build_webpack/ && cp index.html 200.html && cd ..
|
2018-03-12 08:30:03 +00:00
|
|
|
- chmod ugo+x ./config/deploy/deploy.sh
|
2018-06-15 10:32:09 +00:00
|
|
|
- ./config/deploy/deploy.sh
|