We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee98bf9 commit aa5a9eeCopy full SHA for aa5a9ee
.travis.yml
@@ -4,8 +4,8 @@ language: node_js
4
5
node_js:
6
- 6.11.5 # Cloud Functions Runtime (Used for firebase-functions)
7
- - 8 # L.T.S
8
- - 9 # Current
+ - 8
+ - 9
9
10
notifications:
11
# Only send notifications when travis status changes
@@ -24,12 +24,21 @@ cache:
24
branches:
25
only:
26
- master
27
- - v2.0.0
+ - next
28
29
script:
30
- npm run lint
31
- npm run test:cov
32
33
+deploy:
34
+ skip_cleanup: true
35
+ provider: npm
36
+ email: $NPM_EMAIL
37
+ api_key: $NPM_TOKEN
38
+ on:
39
+ node: '9'
40
+ branch: 'master'
41
+
42
after_success:
43
- npm install -g codeclimate-test-reporter
44
- codeclimate-test-reporter < coverage/lcov.info
0 commit comments