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 8a5bf87 commit 91f6ec1Copy full SHA for 91f6ec1
.travis.yml
@@ -8,9 +8,6 @@ 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
@@ -20,7 +17,7 @@ install:
20
17
script:
21
18
- if [[ -z "$DISABLE_TESTS" ]]; then npm run test; fi
22
19
- if [[ ! -z "$DISABLE_TESTS" && ! -z "$LINTING" ]]; then npm run lint; fi
23
- - if [[ -z "$INTEGRATION_TESTS" && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]; then npm run integration-test fi
+ - if [ $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