Skip to content

Commit

Permalink
Fix node versions and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Aug 15, 2018
1 parent ebd818b commit 28e8220
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,7 +1,6 @@
sudo: false
language: node_js
node_js:
- '5'
- '8'
- '6'
- '4'
- '0.12'
- '0.10'
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,7 @@
- date: 2018-08-15
- changes:
- Switch to 'liftoff' module for CLI
- Dropped support for node 0.10, 0.12.
- v1.2.0
- date: 2016-04-01
- changes:
Expand Down
15 changes: 4 additions & 11 deletions appveyor.yml
Expand Up @@ -7,24 +7,17 @@ version: "{build}"
# What combinations to test
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "4"
platform: x86
- nodejs_version: "0.12"
- nodejs_version: "6"
platform: x86
- nodejs_version: "4"
- nodejs_version: "6"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "5"
- nodejs_version: "8"
platform: x86

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: >-
if ($env:nodejs_version -eq "0.10") {
npm -g install npm@3
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
- npm install

test_script:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
"repository": "gruntjs/grunt-cli",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
"node": ">=4"
},
"scripts": {
"test": "node bin/grunt test"
Expand Down

0 comments on commit 28e8220

Please sign in to comment.