0
mirror of https://github.com/valentineus/simple-container.git synced 2025-05-10 02:21:25 +03:00
simple-container/.travis.yml

51 lines
784 B
YAML
Raw Normal View History

2017-10-04 19:59:46 +04:00
language: node_js
node_js:
2017-10-22 18:02:31 +04:00
- "8"
- "7"
- "6"
- "5"
- "4"
2017-10-04 19:59:46 +04:00
os:
2017-10-22 18:02:31 +04:00
- linux
2017-10-04 19:59:46 +04:00
2017-10-06 23:53:26 +04:00
services:
2017-10-22 18:02:31 +04:00
- docker
2017-10-06 23:53:26 +04:00
2017-10-04 19:59:46 +04:00
notifications:
2017-10-22 18:02:31 +04:00
email:
- "info@valentineus.link"
2017-10-04 19:59:46 +04:00
before_install:
2017-10-22 18:02:31 +04:00
- npm install --global nyc
- npm install --global codacy-coverage
2017-10-04 19:59:46 +04:00
install:
2017-10-22 18:02:31 +04:00
- npm install
2017-10-04 19:59:46 +04:00
script:
2017-10-22 18:02:31 +04:00
- npm run check
- nyc npm run test
- nyc report --reporter=lcov
2017-10-04 19:59:46 +04:00
after_success:
2017-10-22 18:02:31 +04:00
- nyc report --reporter=lcov
- cat ./coverage/lcov.info | codacy-coverage
2017-10-04 19:59:46 +04:00
jobs:
2017-10-22 18:02:31 +04:00
include:
2017-10-22 18:17:52 +04:00
stage: deploy
2017-10-22 18:02:31 +04:00
node_js: "8"
os: "linux"
before_deploy:
- git stash --all
- npm install
- npm run build
deploy:
2017-10-22 18:32:12 +04:00
provider: npm
skip_cleanup: true
email: "info@valentineus.link"
api_key: $NPM_PROJECT_TOKEN
on:
tags: true