botserver/.travis.yml
Rodrigo Rodriguez (pragmatismo.io) 46daec8ca5 fix(config): CI fixed, now improving.
2018-11-18 19:23:09 -02:00

42 lines
578 B
YAML

language: node_js
node_js:
- lts/*
notifications:
email: false
before_install:
- npm install --global nyc mocha shx
install:
- npm install
before_script:
- npm run build
script:
- npm run build-docs
- npm run coveralls
branches:
only:
- master
- /^greenkeeper/.*$/
except:
- /^v\d+\.\d+\.\d+$/
after_success:
- npm run travis-deploy-once "npm run semantic-release"
- npm run typedoc
- npm pack
deploy:
- provider: pages
skip_cleanup: true
local_dir: docs/reference
github_token: $GITHUB_TOKEN
on:
tags: false
branch: master