2016-07-19 18:32:41 +01:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
|
|
- "6"
|
|
|
|
- "node"
|
|
|
|
install:
|
|
|
|
- npm install
|
|
|
|
script:
|
2016-07-19 19:02:44 +01:00
|
|
|
- npm test
|
|
|
|
after_failure:
|
2017-04-16 01:12:42 +01:00
|
|
|
- "cat /home/travis/builds/dolanmiu/docx/npm-debug.log"
|
|
|
|
after_success:
|
2017-04-16 01:29:29 +01:00
|
|
|
- git fetch
|
2017-04-16 01:12:42 +01:00
|
|
|
- git checkout gh-pages
|
2017-04-16 01:18:22 +01:00
|
|
|
- git merge master --ff -m "merging with master"
|
2017-04-16 01:12:42 +01:00
|
|
|
- npm run typedoc
|
|
|
|
- git add .
|
|
|
|
- git commit -a -m 'updated documentation'
|
2017-04-16 01:18:22 +01:00
|
|
|
- git push
|