Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #143 from apiaryio/133-drop-node-6
Browse files Browse the repository at this point in the history
Drops NodeJS version 6 support
  • Loading branch information
artem-zakharchenko authored May 3, 2019
2 parents f2d5304 + d816d5f commit ff56175
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
19 changes: 9 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
# GH_TOKEN and NPM_TOKEN are expected to be set
# in https://travis-ci.org/apiaryio/gavel.js/settings
language: "node_js"
language: 'node_js'
node_js:
- "6"
- "8"
- "10"
- '8'
- '10'
cache:
directories:
- "node_modules"
- 'node_modules'
before_install:
- "npm -g install npm@6"
- 'npm -g install npm@6'
install:
- "npm install --no-save"
- 'npm install --no-save'
script:
- "npm run ci:lint || true" # TODO fix all lint errors
- "npm run ci:test"
- 'npm run ci:lint || true' # TODO fix all lint errors
- 'npm run ci:test'
after_success:
- "npm run ci:release"
- 'npm run ci:release'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Validator of HTTP transactions (JavaScript implementation)",
"main": "lib/gavel.js",
"engines": {
"node": ">= 4"
"node": ">= 8"
},
"bin": {
"gavel": "bin/gavel"
Expand Down

0 comments on commit ff56175

Please sign in to comment.