Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1
orbs:
code-infra: https://raw.githubusercontent.com/mui/mui-public/fb2e995849648cc3f6e43ed4ad10b7bad0750d7c/.circleci/orbs/code-infra.yml
code-infra: https://raw.githubusercontent.com/mui/mui-public/c031d4471d2dcc537912379edc22953a7bb1fdc7/.circleci/orbs/code-infra.yml
aws-cli: circleci/aws-cli@5.4.1
aws-s3: circleci/aws-s3@4.1.3

Expand Down Expand Up @@ -28,7 +28,7 @@ default-job: &default-job
description: The base url for running end-to-end test
type: string
default: << pipeline.parameters.e2e-base-url >>
environment:
environment: &default-environment
AWS_REGION_ARTIFACTS: eu-central-1
COREPACK_ENABLE_DOWNLOAD_PROMPT: '0'
DANGER_DISABLE_TRANSPILATION: 'true'
Expand Down Expand Up @@ -110,6 +110,10 @@ jobs:
test_static:
<<: *default-job
resource_class: medium
environment:
<<: *default-environment
# pnpm 11's `pnpm dedupe --check` exceeds Node's default heap on this runner.
NODE_OPTIONS: --max-old-space-size=3584
steps:
- checkout
- install-deps
Expand Down Expand Up @@ -175,6 +179,14 @@ jobs:
playwright-img-version: v1.49.1-noble
steps:
- checkout
# The legacy Playwright image (pinned for older browser engines) ships Node 22.12,
# which is below pnpm 11.5's minimum of Node 22.13. Install a newer Node into
# /usr/local (ahead of the image's /usr/bin on PATH) without changing the browsers.
- run:
name: Upgrade Node.js for pnpm 11
command: |
curl -fsSL https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-x64.tar.gz | tar -xz -C /usr/local --strip-components=1
node --version
- code-infra/install-pnpm
- run:
name: Configure pnpm engine-strict
Expand Down
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

21 changes: 3 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"@eslint/compat": "2.0.5",
"@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.27",
"@mui/internal-bundle-size-checker": "1.0.9-canary.78",
"@mui/internal-code-infra": "0.0.4-canary.60",
"@mui/internal-code-infra": "0.0.4-canary.63",
"@mui/internal-docs-utils": "workspace:^",
"@mui/internal-netlify-cache": "0.0.3-canary.5",
"@mui/internal-scripts": "workspace:^",
Expand Down Expand Up @@ -149,24 +149,9 @@
"config": {
"valeVersion": "3.14.1"
},
"packageManager": "pnpm@10.33.4",
"packageManager": "pnpm@11.5.0",
"engines": {
"pnpm": "10.33.4",
"pnpm": "11.5.0",
"node": ">=22.18.0"
},
"resolutions": {
"caniuse-lite": "^1.0.30001792",
"@babel/core": "7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.29.2",
"@types/node": "20.19.39",
"cross-fetch": "^4.1.0",
"@pigment-css/react": "0.0.31",
"@pigment-css/unplugin": "0.0.31",
"@pigment-css/nextjs-plugin": "0.0.31",
"@pigment-css/vite-plugin": "0.0.31"
}
}
10 changes: 0 additions & 10 deletions patches/styled-components.patch

This file was deleted.

Loading
Loading