forked from najs-framework/najs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (30 loc) · 818 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
33
34
env:
global:
- CC_TEST_REPORTER_ID=09a37ce63fd64f30f94c0da2255954f9396201476f436ac74305327a6a84e303
language: node_js
services:
- redis
node_js:
- "lts/carbon"
jobs:
include:
- stage: test
node_js: "node"
os: linux
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- npm run build || exit 1;
- sleep 5
- ./cc-test-reporter before-build
after_success:
- 'cat ./coverage/lcov.info | coveralls'
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- stage: platform-test
node_js: "lts/carbon"
os: linux
before_script: sleep 5
install:
- npm install
script:
- npm run coverage