Files
docx-js/.travis.yml

19 lines
364 B
YAML
Raw Normal View History

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
- 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'
- git push