File tree Expand file tree Collapse file tree 1 file changed +17
-8
lines changed Expand file tree Collapse file tree 1 file changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
+
2
3
node_js :
3
- - " iojs"
4
- - " 0.12"
5
- - " 0.11"
6
- - " 0.10"
4
+ - node
5
+
7
6
install :
8
- - npm -d install
7
+ - npm install
8
+
9
+ before_script :
10
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
11
+ - chmod +x ./cc-test-reporter
12
+ - ./cc-test-reporter before-build
13
+
9
14
script :
10
- - npm test
15
+ - npm run cover
16
+
17
+ after_script :
18
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
19
+
11
20
after_success :
12
- - ./node_modules/.bin/coveralls < coverage/lcov.info || true
13
- - ./node_modules/.bin/codeclimate < coverage/lcov.info || true
21
+ - bash <(curl -s https://codecov.io/bash) || true
22
+ - coveralls < coverage/lcov.info || true
You can’t perform that action at this time.
0 commit comments