1
1
version : 2.1
2
2
orbs :
3
- aws-cli : circleci/aws-cli@5.2.0
3
+ aws-cli : circleci/aws-cli@5.3.2
4
4
aws-s3 :
circleci/[email protected]
5
5
6
6
parameters :
@@ -193,45 +193,11 @@ jobs:
193
193
- run :
194
194
name : Lint Markdown
195
195
command : pnpm markdownlint
196
- - run :
197
- # See https://circleci.com/developer/orbs/orb/circleci/vale as reference
198
- name : Install Vale
199
- command : |
200
- #!/bin/bash
201
- VALE_STR_CLI_VERSION=3.3.0
202
-
203
- # set smart sudo
204
- if [[ $EUID -eq 0 ]]; then export SUDO=""; else export SUDO="sudo"; fi
205
-
206
- mkdir /tmp/vale-extract
207
- cd /tmp/vale-extract
208
- GZIPPED_OUTPUT="vale.tar.gz"
209
- BINARY_URL=https://github.com/errata-ai/vale/releases/download/v${VALE_STR_CLI_VERSION}/vale_${VALE_STR_CLI_VERSION}_Linux_64-bit.tar.gz
210
- curl -sSL "$BINARY_URL" -o "${GZIPPED_OUTPUT}"
211
-
212
- if [ ! -s "${GZIPPED_OUTPUT}" ]; then
213
- echo "Downloaded file is empty"
214
- rm "${GZIPPED_OUTPUT}"
215
- exit 1
216
- fi
217
-
218
- tar -xzf "${GZIPPED_OUTPUT}"
219
- $SUDO mv vale /usr/local/bin
220
- rm "${GZIPPED_OUTPUT}"
221
-
222
- # validate installation
223
- if [[ -z "$(command -v vale)" ]]; then
224
- echo "vale installation failed"
225
- exit 1
226
- else
227
- echo "vale installation successful"
228
- vale --version
229
- exit 0
230
- fi
231
196
- run :
232
197
name : Lint writing style
233
198
command : |
234
- vale sync
199
+ # Or use https://circleci.com/developer/orbs/orb/circleci/vale as reference to install Vale
200
+ pnpm vale sync
235
201
pnpm valelint
236
202
test_static :
237
203
<< : *default-job
@@ -290,7 +256,6 @@ jobs:
290
256
name : Test module augmentation
291
257
command : |
292
258
pnpm --filter @mui/material typescript:module-augmentation
293
- pnpm --filter @mui/base typescript:module-augmentation
294
259
pnpm --filter @mui/joy typescript:module-augmentation
295
260
pnpm --filter @mui/system typescript:module-augmentation
296
261
- run :
@@ -363,7 +328,7 @@ jobs:
363
328
<< : *default-job
364
329
resource_class : ' medium+'
365
330
docker :
366
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
331
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
367
332
steps :
368
333
- checkout
369
334
- install_js :
@@ -391,7 +356,7 @@ jobs:
391
356
test_e2e :
392
357
<< : *default-job
393
358
docker :
394
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
359
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
395
360
steps :
396
361
- checkout
397
362
- install_js :
@@ -403,7 +368,7 @@ jobs:
403
368
# NOTE: This workflow runs after successful docs deploy. See /test/e2e-website/README.md#ci
404
369
<< : *default-job
405
370
docker :
406
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
371
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
407
372
steps :
408
373
- checkout
409
374
- install_js :
@@ -416,7 +381,7 @@ jobs:
416
381
test_profile :
417
382
<< : *default-job
418
383
docker :
419
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
384
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
420
385
steps :
421
386
- checkout
422
387
- install_js :
@@ -441,7 +406,7 @@ jobs:
441
406
test_regressions :
442
407
<< : *default-job
443
408
docker :
444
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
409
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
445
410
steps :
446
411
- checkout
447
412
- install_js :
@@ -514,7 +479,7 @@ jobs:
514
479
test_bundling_next_webpack4 :
515
480
<< : *default-job
516
481
docker :
517
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
482
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
518
483
working_directory : /tmp/material-ui/test/bundling/fixtures/next-webpack4/
519
484
steps :
520
485
- checkout :
@@ -532,7 +497,7 @@ jobs:
532
497
test_bundling_next_webpack5 :
533
498
<< : *default-job
534
499
docker :
535
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
500
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
536
501
working_directory : /tmp/material-ui/test/bundling/fixtures/next-webpack5/
537
502
steps :
538
503
- checkout :
@@ -550,7 +515,7 @@ jobs:
550
515
test_bundling_create_react_app :
551
516
<< : *default-job
552
517
docker :
553
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
518
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
554
519
working_directory : /tmp/material-ui/test/bundling/fixtures/create-react-app/
555
520
steps :
556
521
- checkout :
@@ -568,7 +533,7 @@ jobs:
568
533
test_bundling_snowpack :
569
534
<< : *default-job
570
535
docker :
571
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
536
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
572
537
working_directory : /tmp/material-ui/test/bundling/fixtures/snowpack/
573
538
steps :
574
539
- checkout :
@@ -586,7 +551,7 @@ jobs:
586
551
test_bundling_vite :
587
552
<< : *default-job
588
553
docker :
589
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
554
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
590
555
working_directory : /tmp/material-ui/test/bundling/fixtures/vite/
591
556
steps :
592
557
- checkout :
@@ -604,7 +569,7 @@ jobs:
604
569
test_bundling_esbuild :
605
570
<< : *default-job
606
571
docker :
607
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
572
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
608
573
working_directory : /tmp/material-ui/test/bundling/fixtures/esbuild/
609
574
steps :
610
575
- checkout :
@@ -622,7 +587,7 @@ jobs:
622
587
test_bundling_gatsby :
623
588
<< : *default-job
624
589
docker :
625
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
590
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
626
591
environment :
627
592
GATSBY_CPU_COUNT : ' 3'
628
593
working_directory : /tmp/material-ui/test/bundling/fixtures/gatsby/
@@ -723,7 +688,7 @@ jobs:
723
688
test_benchmark :
724
689
<< : *default-job
725
690
docker :
726
- - image : mcr.microsoft.com/playwright:v1.51.1 -noble
691
+ - image : mcr.microsoft.com/playwright:v1.52.0 -noble
727
692
steps :
728
693
- checkout
729
694
- install_js :
0 commit comments