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

Update supported Node.js versions #40

Merged
merged 1 commit into from
Sep 27, 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
8 changes: 2 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
sudo: false

language: node_js

node_js:
- "6"
- "8"
- "10"
- "12"

matrix:
fast_finish: true

cache:
directories:
- node_modules
cache: npm
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ version: "{build}"

environment:
matrix:
- NODEJS_VERSION: "6"
- NODEJS_VERSION: "8"
PLATFORM: x86
- NODEJS_VERSION: "6"
PLATFORM: x64
- NODEJS_VERSION: "8"
PLATFORM: x64
- NODEJS_VERSION: "10"
PLATFORM: x64
- NODEJS_VERSION: "12"
PLATFORM: x64

install:
- ps: Install-Product node $env:NODEJS_VERSION $env:PLATFORM
- npm install
- npm ci

test_script:
- node --version
Expand All @@ -31,4 +31,4 @@ matrix:
fast_finish: true

cache:
- 'node_modules -> appveyor.yml,package.json,package-lock.json'
- '%APPDATA%\npm-cache\ -> appveyor.yml,package.json,package-lock.json'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"repository": "gruntjs/grunt-contrib-internal",
"license": "MIT",
"engines": {
"node": ">=6"
"node": ">=8"
},
"scripts": {
"test": "grunt test"
Expand Down