Skip to content

Commit 62eef97

Browse files
committed
chore: travis updates
1 parent fb71234 commit 62eef97

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ language: node_js
33
matrix:
44
include:
55
- node_js: '8.9'
6+
env:
7+
- INTEGRATION_TESTS=false
68
- node_js: '10.6'
79
env:
810
- INTEGRATION_TESTS=true
@@ -19,7 +21,7 @@ install:
1921
script:
2022
- if [[ -z "$DISABLE_TESTS" ]]; then npm run test; fi
2123
- if [[ ! -z "$DISABLE_TESTS" && ! -z "$LINTING" ]]; then npm run lint; fi
22-
- if [[ ! -z "$INTEGRATION_TESTS" && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]; then npm run integration-test; fi
24+
- if [[ ! -z "$INTEGRATION_TESTS" ]]; then npm run integration-test; fi
2325

2426
after_success:
2527
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage

0 commit comments

Comments
 (0)