forked from egy186/icojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
32 lines (32 loc) · 941 Bytes
/
.travis.yml
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
32
language: node_js
node_js:
- node
- lts/erbium
- lts/dubnium
env:
global:
secure: OIN8IWAmpeo7Gp/MF0zizjhWYUag1tJek0yt8DGmq99nI1vIvy6pxj+uey4iSGLwulAE/p59OC9MNt0K+Er+R4Zkb3D7ACSYTQztltB2X7tYTvFptV4tbzQkiwgJIiBeCVD7vJoTDoFmJpkX4bv5qjquCwiDcVYoSiQEWZkP5kQ=
install: npm install
script:
- npm run lint
- npm test
after_success:
- npm install coveralls
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
jobs:
include:
- stage: npm release
node_js: lts/erbium
install: npm install
script: npm run build
deploy:
provider: npm
skip_cleanup: true
email: [email protected]
api_key:
secure: UWdDk1rdHkGUryAh1aCg13ZBemOoHnTECGoy3EeUVMefIRpHrT9XwTrFomf6+1ZiWyMS7RahqkawTScZKiLISOuYrVgQ0lAtYYE3tzo8zZ7HfzVqg6xR0tAHlfDNtIQiHnujBa9jNuy+3QnbqRSyIFObxoAgWndX1cot74V2dJA=
on:
all_branches: true
repo: egy186/icojs
tags: true
after_success: true