8000
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 0908b8f commit 3a80ca7Copy full SHA for 3a80ca7
.travis.yml
@@ -6,10 +6,17 @@ node_js:
6
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
+
14
script:
- - npm run cover
15
+ - npm run travis
16
17
+after_script:
18
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
19
20
after_success:
21
- bash <(curl -s https://codecov.io/bash) || true
22
- coveralls < coverage/lcov.info || true
- - codeclimate-test-reporter < coverage/lcov.info || true
0 commit comments