@@ -28,7 +28,7 @@ anchor_1_win: &defaults_win
2828 resource_class : windows.medium
2929 shell : powershell.exe -ExecutionPolicy Bypass
3030 machine :
31- image : windows-server-2019
31+ image : windows-server-2019
3232
3333# After checkout, rebase on top of target branch.
3434anchor_2 : &post_checkout
@@ -37,8 +37,8 @@ anchor_2: &post_checkout
3737 command : >
3838 if [[ -n "${CIRCLE_PR_NUMBER}" ]]; then
3939 # User is required for rebase.
40- git config user.name "angular-ci"
41- git config user.email "angular-ci"
40+ git config user.name "angular-ci"
41+ git config user.email "angular-ci"
4242 # Rebase PR on top of target branch.
4343 node tools/rebase-pr.js angular/angular-cli ${CIRCLE_PR_NUMBER}
4444 else
@@ -67,7 +67,7 @@ anchor_5: &env_win
6767 name : Setup windows node environment
6868 command : ./.circleci/windows-env.ps1
6969anchor_6 : &ignore_pull_requests
70- filters :
70+ filters :
7171 branches :
7272 ignore :
7373 - /pull\/.*/
@@ -228,9 +228,9 @@ jobs:
228228 # Docs: https://github.com/CircleCI-Public/windows-preview-docs
229229 test-win :
230230 << : *defaults_win
231- # Skipping cache and workspace for now because it takes 10x longer than on linux.
231+ # Skipping cache and workspace for now because it takes 10x longer than on linux.
232232 # TODO: when/if CircleCI makes them faster, use cache and workspaces fully.
233- # Notes:
233+ # Notes:
234234 # - windows needs its own cache key because binaries in node_modules are different.
235235 # - windows might need its own workspace for the same reason.
236236 # - get cache dir on windows via `yarn cache dir` (was `C:\Users\circleci\AppData\Local\Yarn\Cache\v4` last time)
@@ -243,10 +243,10 @@ jobs:
243243 - run : yarn install --frozen-lockfile
244244 # Build and test should be on their own jobs, but restoring workspaces is too slow
245245 # so we do it here.
246- - run : yarn admin -- build
247- - run : yarn test -- --full
246+ - run : yarn admin -- build
247+ - run : yarn test -- --full
248248 # Run partial e2e suite on PRs only. Master will run the full e2e suite with sharding.
249- - run : if (Test-Path env:CIRCLE_PR_NUMBER) { node tests\legacy-cli\run_e2e.js "--glob=tests/{basic,ivy}/**" }
249+ - run : if (Test-Path env:CIRCLE_PR_NUMBER) { node tests\legacy-cli\run_e2e.js "--glob=tests/{basic,ivy}/**" }
250250
251251 e2e-cli-win :
252252 << : *defaults_win
@@ -259,8 +259,8 @@ jobs:
259259 - run : node --version
260260 - run : yarn --version
261261 - run : yarn install --frozen-lockfile
262- - run : yarn admin -- build
263- - run : node tests\legacy-cli\run_e2e.js --nb-shards=$env:CIRCLE_NODE_TOTAL --shard=$env:CIRCLE_NODE_INDEX
262+ - run : yarn admin -- build
263+ - run : node tests\legacy-cli\run_e2e.js --nb-shards=$env:CIRCLE_NODE_TOTAL --shard=$env:CIRCLE_NODE_INDEX
264264
265265workflows :
266266 version : 2
0 commit comments