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:
77
88install :
99 - ps : Install-Product node $env:nodejs_version
10- - yarn --frozen-lockfile
10+ - npm install -g npm@~5.3.0
11+ - npm install
1112
1213test_script :
1314 - node --version
14- - yarn --version
15+ - npm --version
1516 - node tests\run_e2e.js --appveyor
1617
1718build : off
1819
1920cache :
2021 - node_modules
21- - " %LOCALAPPDATA%/Yarn"
Original file line number Diff line number Diff line change 88 - checkout
99 - restore_cache :
1010 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
1214 - save_cache :
1315 key : angular-cli-{{ .Branch }}-{{ checksum "yarn.lock" }}
1416 paths :
Original file line number Diff line number Diff line change 77language : node_js
88
99cache :
10- yarn : true
1110 directories :
1211 - ./node_modules
1312
@@ -92,14 +91,11 @@ matrix:
9291
9392
9493before_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
10096
10197install :
102- - yarn --frozen-lockfile
98+ - npm install
10399
104100env :
105101 global :
You can’t perform that action at this time.
0 commit comments