Skip to content
This repository has been archived by the owner on Aug 17, 2019. It is now read-only.

Commit

Permalink
meta: update node version support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node@4 is no longer supported
  • Loading branch information
zkat committed May 24, 2018
1 parent c4fe48c commit 694b4d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# cipm currently relies on npm >5.4.0 to retrieve config
before_install:
- npm i -g npm@^5.4.0
- npm i -g npm@>5.4.0
language: node_js
sudo: false
node_js:
- "10"
- "9"
- "8"
- "6"
- "4"
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "9"
- nodejs_version: "8"
- nodejs_version: "6"
- nodejs_version: "4"

platform:
- x64

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm config set spin false
- npm i -g npm@^5.4.0
- npm i -g npm@>5.4.0
- npm install

test_script:
Expand Down

0 comments on commit 694b4d3

Please sign in to comment.