25 lines
288 B
YAML
25 lines
288 B
YAML
|
|
language: node_js
|
|
|
|
node_js:
|
|
- lts/*
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
before_install:
|
|
- npm install --global nyc mocha typescript rimraf
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script:
|
|
- npm run clean
|
|
- npm run build
|
|
- npm run build-docs
|
|
- npm run tslit
|
|
- npm run coveralls
|
|
|
|
branches:
|
|
only:
|
|
- master
|