@@ -19,30 +19,30 @@ orbs:
1919executors :
2020 rsp :
2121 docker :
22- - image : cimg/node:18.17.1
22+ - image : cimg/node:18.20.3
2323 environment :
2424 CACHE_VERSION : v1
2525 working_directory : ~/react-spectrum
2626
2727 rsp-large :
2828 docker :
29- - image : cimg/node:18.17.1
29+ - image : cimg/node:18.20.3
3030 resource_class : large
3131 environment :
3232 CACHE_VERSION : v1
3333 working_directory : ~/react-spectrum
3434
3535 rsp-xlarge :
3636 docker :
37- - image : cimg/node:18.17.1
37+ - image : cimg/node:18.20.3
3838 resource_class : xlarge
3939 environment :
4040 CACHE_VERSION : v1
4141 working_directory : ~/react-spectrum
4242
4343 rsp-xlarge-nodeupdate :
4444 docker :
45- - image : cimg/node:18.17.1
45+ - image : cimg/node:18.20.3
4646 resource_class : xlarge
4747 environment :
4848 CACHE_VERSION : v1
@@ -121,7 +121,7 @@ jobs:
121121 - ~/react-spectrum
122122 key : react-spectrum17-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
123123
124- install-canary :
124+ install-19 :
125125 executor : rsp-large
126126 steps :
127127 - checkout
@@ -134,12 +134,12 @@ jobs:
134134 - run :
135135 name : build
136136 command : |
137- yarn install --pure-lockfile --cache-folder ~/.cache/yarn && yarn install-canary --cache-folder ~/.cache/yarn
137+ yarn install --pure-lockfile --cache-folder ~/.cache/yarn && yarn install-19 --cache-folder ~/.cache/yarn
138138
139139 - save_cache :
140140 paths :
141141 - ~/react-spectrum
142- key : react-spectrum-canary -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
142+ key : react-spectrum-19 -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
143143
144144 test-ssr :
145145 executor : rsp-xlarge
@@ -199,11 +199,11 @@ jobs:
199199 command : |
200200 yarn test:ssr
201201
202- test-ssr-canary :
202+ test-ssr-19 :
203203 executor : rsp-xlarge
204204 steps :
205205 - restore_cache :
206- key : react-spectrum-canary -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
206+ key : react-spectrum-19 -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
207207
208208 - run :
209209 name : test ssr
@@ -258,12 +258,12 @@ jobs:
258258 - store_artifacts :
259259 path : ~/junit
260260
261- test-canary :
261+ test-19 :
262262 parallelism : 3
263263 executor : rsp-xlarge
264264 steps :
265265 - restore_cache :
266- key : react-spectrum-canary -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
266+ key : react-spectrum-19 -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
267267
268268 - run : mkdir ~/junit
269269
@@ -272,10 +272,10 @@ jobs:
272272 command : |
273273 shopt -s globstar
274274 TESTFILES=$(circleci tests glob "packages/**/*.test.[tj]{s,sx}" | circleci tests split --split-by=timings)
275- JEST_JUNIT_OUTPUT_NAME="junit-canary .xml" yarn test ${TESTFILES}
275+ JEST_JUNIT_OUTPUT_NAME="junit-19 .xml" yarn test ${TESTFILES}
276276
277277 - run :
278- command : cp junit-canary .xml ~/junit/
278+ command : cp junit-19 .xml ~/junit/
279279 when : always
280280 - store_test_results :
281281 path : ~/junit
@@ -412,20 +412,20 @@ jobs:
412412 paths :
413413 - ' */storybook-17/'
414414
415- storybook-canary :
415+ storybook-19 :
416416 executor : rsp-large
417417 steps :
418418 - restore_cache :
419- key : react-spectrum-canary -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
419+ key : react-spectrum-19 -{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
420420
421421 - run :
422- name : build storybook-canary
423- command : make storybook-canary
422+ name : build storybook-19
423+ command : make storybook-19
424424
425425 - persist_to_workspace :
426426 root : dist
427427 paths :
428- - ' */storybook-canary /'
428+ - ' */storybook-19 /'
429429
430430 docs :
431431 executor : rsp-xlarge
@@ -547,7 +547,7 @@ workflows:
547547 - install
548548 - install-16
549549 - install-17
550- - install-canary
550+ - install-19
551551 - test-ssr :
552552 requires :
553553 - install
@@ -566,6 +566,12 @@ workflows:
566566 - test-17 :
567567 requires :
568568 - install-17
569+ - test-19 :
570+ requires :
571+ - install-19
572+ - test-ssr-19 :
573+ requires :
574+ - install-19
569575 - test-esm :
570576 requires :
571577 - install
@@ -603,9 +609,9 @@ workflows:
603609 - storybook-17 :
604610 requires :
605611 - install-17
606- - storybook-canary :
612+ - storybook-19 :
607613 requires :
608- - install-canary
614+ - install-19
609615 - docs :
610616 requires :
611617 - install
@@ -628,7 +634,7 @@ workflows:
628634 - storybook
629635 - storybook-16
630636 - storybook-17
631- - storybook-canary
637+ - storybook-19
632638 - docs
633639 - deploy-verdaccio :
634640 requires :
0 commit comments