Skip to content

Commit

Permalink
ci: bump node version to 6.9.5 and npm to 3.10.7
Browse files Browse the repository at this point in the history
this is required by @angular/cli
  • Loading branch information
wardbell authored and IgorMinar committed Feb 3, 2017
1 parent 20a7e26 commit 31d42d8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.0
6.9.5
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: node_js
sudo: false
node_js:
- '6.6.0'
- '6.9.5'

git:
# Increased from default (50) to ensure last release tag is in this range
depth: 150
Expand Down
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
machine:
node:
version: 6.6.0
version: 6.9.5

dependencies:
pre:
- npm install -g npm@3.5.3
- npm install -g npm@3.10.7

test:
override:
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// THIS CHECK SHOULD BE THE FIRST THING IN THIS FILE
// This is to ensure that we catch env issues before we error while requiring other dependencies.
require('./tools/check-environment')({
requiredNpmVersion: '>=3.5.3 <4.0.0',
requiredNodeVersion: '>=5.4.1 <7.0.0',
requiredNpmVersion: '>=3.10.7 <4.0.0',
requiredNodeVersion: '>=6.9.5 <7.0.0',
});

const gulp = require('gulp');
Expand Down
4 changes: 2 additions & 2 deletions scripts/ci-lite/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -e -o pipefail

echo 'travis_fold:start:ENV'

NODE_VERSION=5.4.1
NPM_VERSION=3.5.3
NODE_VERSION=6.9.5
NPM_VERSION=3.10.7 # do not upgrade to >3.10.8 unless https://github.com/npm/npm/issues/14042 is resolved
YARN_VERSION=0.19.1
CHROMIUM_VERSION=403382 # Chrome 53 linux stable, see https://www.chromium.org/developers/calendar
SAUCE_CONNECT_VERSION=4.3.11
Expand Down

0 comments on commit 31d42d8

Please sign in to comment.