Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(node): remove node 6 and 8 support #649

Merged
merged 2 commits into from Jul 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -13,7 +13,6 @@ before_install:
before_script:
- git version
script:
- npm run lint
- npm run test
- npm run check-coverage
after_success:
Expand Down
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -7,6 +7,11 @@ When you commit with Commitizen, you'll be prompted to fill out any required com

## Installing the command line tool

Commitizen is currently tested against
node 10 and 12 although it may work in
older node. You should also have npm 6
or greater.

Installation is as simple as running the following command (if you see `EACCES` error, reading [fixing npm permissions](https://docs.npmjs.com/getting-started/fixing-npm-permissions) may help):

```
Expand Down
6 changes: 2 additions & 4 deletions jobs/build.yml
Expand Up @@ -11,12 +11,10 @@ jobs:
strategy:
maxParallel: 3
matrix:
node-12:
node_version: ^12.6.0
node-10:
node_version: ^10.10.0
node-8:
node_version: ^8.12.0
node-6:
node_version: ^6.14.4
steps:
- task: NodeTool@0
displayName: " Install Node.js"
Expand Down