-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (31 loc) · 771 Bytes
/
.travis.yml
File metadata and controls
31 lines (31 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Cache node_modules and typings for future runs. This does make the builds
# sometimes fail because of a bad cache but usually this is a huge test
# performance win.
cache:
directories:
- node_modules
# Use the Travis Docker build system which is faster
sudo: false
# Specify to use node
language: node_js
# Specify the node versions to run on
node_js:
- "6.11.5"
# Report code coverage to coveralls after successful test runs
after_success:
- npm run coveralls
# Do not send build notifications
notifications:
email: false
deploy:
- provider: npm
skip_cleanup: true
email: yo@rogelioorts.com
api_key: $NPM_TOKEN
on:
branch: master
- provider: releases
skip_cleanup: true
api_key: $GITHUB_TOKEN
on:
branch: master