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 fbbff07 commit b50399fCopy full SHA for b50399f
.travis.yml
@@ -1,13 +1,17 @@
1
sudo: false
2
+os:
3
+ - linux
4
+ - osx
5
language: node_js
-addons:
- sauce_connect: true
6
node_js:
7
- 'stable'
8
before_script:
- - 'npm install -g grunt-cli codecov codeclimate-test-reporter'
9
+ - 'npm install -g grunt-cli codecov
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
script:
14
- grunt ci
15
after_success:
- - 'codeclimate-test-reporter < coverage/lcov.info'
16
- 'codecov'
17
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
0 commit comments