File tree Expand file tree Collapse file tree 7 files changed +3669
-1282
lines changed Expand file tree Collapse file tree 7 files changed +3669
-1282
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ matrix:
7
7
8
8
install :
9
9
- ps : Install-Product node $env:nodejs_version
10
- - yarn --frozen-lockfile
10
+ - npm install -g npm@~5.3.0
11
+ - npm install
11
12
12
13
test_script :
13
14
- node --version
14
- - yarn --version
15
+ - npm --version
15
16
- node tests\run_e2e.js --appveyor
16
17
17
18
build : off
18
19
19
20
cache :
20
21
- node_modules
21
- - " %LOCALAPPDATA%/Yarn"
Original file line number Diff line number Diff line change 8
8
- checkout
9
9
- restore_cache :
10
10
key : angular-cli-{{ .Branch }}-{{ checksum "yarn.lock" }}
11
- - run : yarn --frozen-lockfile
11
+ - run : |
12
+ npm install -g npm@~5.3.0
13
+ npm install
12
14
- save_cache :
13
15
key : angular-cli-{{ .Branch }}-{{ checksum "yarn.lock" }}
14
16
paths :
Original file line number Diff line number Diff line change 7
7
language : node_js
8
8
9
9
cache :
10
- yarn : true
11
10
directories :
12
11
- ./node_modules
13
12
@@ -92,14 +91,11 @@ matrix:
92
91
93
92
94
93
before_install :
95
- # Install yarn.
96
- - curl -o- -L https://yarnpkg.com/install.sh | bash
97
- - export PATH="$HOME/.yarn/bin:$PATH"
98
- - yarn config set spin false
99
- - yarn config set progress false
94
+ # Install npm 5.
95
+ - npm install -g npm@~5.3.0
100
96
101
97
install :
102
- - yarn --frozen-lockfile
98
+ - npm install
103
99
104
100
env :
105
101
global :
You can’t perform that action at this time.
0 commit comments