16 lines
452 B
YAML
16 lines
452 B
YAML
language: node_js
|
|
node_js:
|
|
- "node"
|
|
- "lts/*"
|
|
- "14"
|
|
- "12"
|
|
env:
|
|
global:
|
|
- CC_TEST_REPORTER_ID=434d043a84e2a5beb39e83fadb3e7931f7b0e082a78e8da2c5bc8ade00785a11
|
|
before_script:
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
- chmod +x ./cc-test-reporter
|
|
- ./cc-test-reporter before-build
|
|
after_script:
|
|
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|