Skip to content

Commit 130d9b7

Browse files
committed
revert to using npm 4
1 parent 80a4135 commit 130d9b7

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ language: node_js
33
node_js:
44
- "6"
55
- "8"
6-
- "10"
76

87
branches:
98
only:
@@ -31,6 +30,5 @@ cache:
3130
yarn: false # switch to yarn once ember-cli-addon-tests is removed
3231

3332
before_install:
34-
35-
# TODO: remove when we stop testing against node 6
36-
- if [[ `npm -v` < 6* ]]; then npm i -g npm@6; fi
33+
- npm config set spin false
34+
- npm install -g npm@4

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ environment:
66
matrix:
77
- nodejs_version: "6"
88
- nodejs_version: "8"
9-
- nodejs_version: "10"
109

1110
branches:
1211
only:
@@ -17,7 +16,8 @@ branches:
1716
# Install scripts. (runs after repo cloning)
1817
install:
1918
- ps: Install-Product node $env:nodejs_version
20-
- appveyor-retry npm install -g npm@^6
19+
- npm config set spin false
20+
- appveyor-retry npm install -g npm@^3
2121
- appveyor-retry npm i -g bower # for ember-cli-addon-tests
2222
- npm --version
2323
- appveyor-retry choco install phantomjs

0 commit comments

Comments
 (0)