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 89af024 commit 37715acCopy full SHA for 37715ac
.travis.yml
@@ -15,9 +15,15 @@ jobs:
15
script: commitlint-travis
16
- script: yarn lint
17
name: Lint JavaScript
18
- - script: yarn test
19
- before_install: docker-compose up -d
+ - script: yarn test:coverage
20
name: Tests
+ # NOTICE: Handles code coverage reporting to Code Climate
21
+ before_install:
22
+ - docker-compose up -d
23
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
24
+ - chmod +x ./cc-test-reporter
25
+ after_script:
26
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
27
- stage: Build & Publish
28
if: branch = master AND type != pull_request
29
script: skip
0 commit comments