-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
29 lines (29 loc) · 948 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
branches:
only:
- master
- develop
- /^feature/.*$/
language: node_js
node_js:
- stable
- "--lts"
env:
global:
- CC_TEST_REPORTER_ID=42271412e83fddd8f9d0486d0be2c44393111ff2bd55360df0c03698de1c99ec
before_install:
- npm i -g npm
install: npm ci --no-optional
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:
- "[ $TRAVIS_NODE_VERSION = stable ] && c8 report --reporter=lcov --reporter=text && ./cc-test-reporter
after-build --debug -t lcov --exit-code $TRAVIS_TEST_RESULT || echo 'Coverage skipped'"
notifications:
slack:
secure: ZTrPXF+4Ka2nAq5rNFSn8FGUXTk6EYBug5C4OtnEt4ECtzVXIm+51ZisUBagjkrMAOdFHZbTgGcWPAv8TQA8EWIGlfVzdDLXcejwMHhixxoLsBsfTnsN9tacV6e9xvFOWuG6/Y/F89214VCMODh8I8To9LvAbgVdFxyLh2OcfuQ=
cache:
directories:
- "$HOME/.npm"