@@ -25,11 +25,11 @@ parameters:
2525# See https://circleci.com/docs/2.0/caching/#restoring-cache for how prefixes work in CircleCI.
2626var_1 : &cache_key v1-angular_devkit-16.14-{{ checksum "yarn.lock" }}
2727var_1_win : &cache_key_win v1-angular_devkit-win-16.14-{{ checksum "yarn.lock" }}
28- var_3 : &default_nodeversion '16.14 '
29- var_3_major : &default_nodeversion_major '16 '
28+ var_3 : &default_nodeversion '18.13 '
29+ var_3_major : &default_nodeversion_major '18 '
3030# The major version of node toolchains. See tools/toolchain_info.bzl
3131# NOTE: entries in this array may be repeated elsewhere in the file, find them before adding more
32- var_3_all_major : &all_nodeversion_major ['16', ' 18']
32+ var_3_all_major : &all_nodeversion_major ['18']
3333# Workspace initially persisted by the `setup` job, and then enhanced by `setup-and-build-win`.
3434# https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs
3535# https://circleci.com/blog/deep-diving-into-circleci-workspaces/
@@ -141,8 +141,8 @@ commands:
141141 setup_windows :
142142 steps :
143143 - initialize_env
144- - run : nvm install 16.14.2
145- - run : nvm use 16.14.2
144+ - run : nvm install 18.13.0
145+ - run : nvm use 18.13.0
146146 - run : npm install -g yarn@1.22.10 @bazel/bazelisk@${BAZELISK_VERSION}
147147 - run : node --version
148148 - run : yarn --version
@@ -299,15 +299,15 @@ jobs:
299299 PWD : .
300300 command : |
301301 mkdir X:/ramdisk/e2e
302- bazel test --define=E2E_TEMP=X:/ramdisk/e2e --define=E2E_SHARD_TOTAL=$env:CIRCLE_NODE_TOTAL --define=E2E_SHARD_INDEX=$env:CIRCLE_NODE_INDEX --config=e2e //tests/legacy-cli:e2e.npm_node16
302+ bazel test --define=E2E_TEMP=X:/ramdisk/e2e --define=E2E_SHARD_TOTAL=$env:CIRCLE_NODE_TOTAL --define=E2E_SHARD_INDEX=$env:CIRCLE_NODE_INDEX --config=e2e //tests/legacy-cli:e2e.npm_node18
303303 # This timeout provides time for the actual tests to timeout and report status
304304 # instead of CircleCI stopping the job without test failure information.
305305 no_output_timeout : 40m
306306 - fail_fast
307307 - store_artifacts :
308- path : dist/testlogs/tests/legacy-cli/e2e.npm_node16
308+ path : dist/testlogs/tests/legacy-cli/e2e.npm_node18
309309 - store_test_results :
310- path : dist/testlogs/tests/legacy-cli/e2e.npm_node16
310+ path : dist/testlogs/tests/legacy-cli/e2e.npm_node18
311311
312312workflows :
313313 version : 2
0 commit comments