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 8d56a01 commit 5335224Copy full SHA for 5335224
.travis.yml
@@ -8,6 +8,9 @@ matrix:
8
env:
9
- DISABLE_TESTS=true
10
- LINTING=true
11
+ - node_js: '10.6'
12
+ env:
13
+ - INTEGRATION_TESTS=true
14
15
sudo: false
16
@@ -17,7 +20,7 @@ install:
17
20
script:
18
21
- if [[ -z "$DISABLE_TESTS" ]]; then npm run test; fi
19
22
- if [[ ! -z "$DISABLE_TESTS" && ! -z "$LINTING" ]]; then npm run lint; fi
- - if [[ $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]; then npm run integration-test; fi
23
+ - if [[ ! -z "$INTEGRATION_TESTS" && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]; then npm run integration-test; fi
24
25
after_success:
26
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
0 commit comments