-
-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(travis): update
node
v4.3.0...4.8.0
- Loading branch information
1 parent
0eb8fe7
commit ac8430c
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,27 +7,27 @@ matrix: | |
fast_finish: true | ||
include: | ||
# - os: linux | ||
# node_js: '7' | ||
# node_js: '8' | ||
# env: WEBPACK_VERSION="2.2.0" BITHOUND_CHECK=true JOB_PART=lint | ||
- os: linux | ||
node_js: '7' | ||
node_js: '8' | ||
env: WEBPACK_VERSION="2.2.0" JOB_PART=test | ||
- os: linux | ||
node_js: '4.3' | ||
node_js: '4.8' | ||
env: WEBPACK_VERSION="2.2.0" JOB_PART=test | ||
- os: linux | ||
node_js: '6' | ||
env: WEBPACK_VERSION="2.2.0" JOB_PART=test | ||
# - os: linux | ||
# node_js: '7' | ||
# node_js: '8' | ||
# env: WEBPACK_VERSION="2.2.0" JOB_PART=coverage | ||
before_install: | ||
- nvm --version | ||
- node --version | ||
before_script: | ||
- if [ "$WEBPACK_VERSION" ]; then yarn add webpack@^$WEBPACK_VERSION; fi | ||
- if [ "$WEBPACK_VERSION" ]; then npm i webpack@^$WEBPACK_VERSION; fi | ||
# - if [ "$BITHOUND_CHECK" ]; then npm install -g bithound; bithound check [email protected]:$TRAVIS_REPO_SLUG.git; fi | ||
script: | ||
- yarn run travis:$JOB_PART | ||
- npm run travis:$JOB_PART | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |