botserver/.travis.yml

28 lines
270 B
YAML
Raw Normal View History

2018-11-11 17:41:36 -02:00
2018-11-11 10:50:58 -02:00
language: node_js
2018-11-11 17:41:36 -02:00
2018-11-11 10:50:58 -02:00
node_js:
- lts/*
2018-11-11 17:41:36 -02:00
notifications:
email: false
2018-11-11 17:41:36 -02:00
before_install:
- npm install --global nyc mocha typescript
2018-11-11 17:41:36 -02:00
2018-11-11 10:50:58 -02:00
install:
2018-11-11 18:00:37 -02:00
- npm run clean
2018-11-11 17:41:36 -02:00
- npm run build
2018-11-11 18:00:37 -02:00
- npm run build-docs
- npm run tslit
- npm run coveralls
2018-11-11 18:03:35 -02:00
script:
2018-11-11 17:41:36 -02:00
branches:
only:
- master
2018-11-11 18:03:35 -02:00