botserver/.travis.yml

46 lines
621 B
YAML
Raw Normal View History

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:
2018-11-11 19:38:43 -02:00
- npm install --global nyc mocha typescript rimraf shx
2018-11-11 10:50:58 -02:00
install:
2018-11-11 18:06:22 -02:00
- npm install
2018-11-11 19:38:43 -02:00
before_script:
2018-11-11 17:41:36 -02:00
- npm run build
2018-11-11 19:38:43 -02:00
script:
2018-11-11 20:02:21 -02:00
#- npm run build-docs
#- npm run tslint
#- npm run coveralls
2018-11-11 18:00:37 -02:00
2018-11-11 17:41:36 -02:00
branches:
only:
- master
2018-11-11 19:38:43 -02:00
after_success:
2018-11-11 20:08:56 -02:00
#- npm run typedoc
2018-11-11 19:38:43 -02:00
- npm pack
2018-11-11 20:00:11 -02:00
deploy:
2018-11-11 20:02:21 -02:00
- provider: releases
2018-11-11 19:38:43 -02:00
api_key: $GITHUB_TOKEN
file_glob: true
2018-11-11 20:05:08 -02:00
file: src/**/*
2018-11-11 19:38:43 -02:00
skip_cleanup: true
on:
2018-11-11 20:08:56 -02:00
tags: false
2018-11-11 19:56:00 -02:00
2018-11-11 20:02:21 -02:00
- provider: npm
2018-11-11 19:38:43 -02:00
skip_cleanup: true
email: "operations@pragmatismo.io"
api_key: $NPM_TOKEN
on:
2018-11-11 20:08:56 -02:00
tags: false