Skip to content

Commit 5f3e023

Browse files
dependabot[bot]nmergetgithub-actions[bot]
authored
chore(deps-dev): bump the playwright group with 3 updates (#4433)
* chore(deps-dev): bump the playwright group with 3 updates Bumps the playwright group with 3 updates: [@playwright/test](https://github.com/microsoft/playwright), [@playwright/experimental-ct-react](https://github.com/microsoft/playwright) and [@playwright/experimental-ct-vue](https://github.com/microsoft/playwright). Updates `@playwright/test` from 1.52.0 to 1.53.1 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.52.0...v1.53.1) Updates `@playwright/experimental-ct-react` from 1.52.0 to 1.53.1 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.52.0...v1.53.1) Updates `@playwright/experimental-ct-vue` from 1.52.0 to 1.53.1 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.52.0...v1.53.1) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-version: 1.53.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: playwright - dependency-name: "@playwright/experimental-ct-react" dependency-version: 1.53.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: playwright - dependency-name: "@playwright/experimental-ct-vue" dependency-version: 1.53.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: playwright ... Signed-off-by: dependabot[bot] <[email protected]> * chore: pin all playwright dependencies * auto update snapshots (#4437) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * chore: update playwright image * fix: wait for custom select to focus --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicolas Merget <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6487bc1 commit 5f3e023

File tree

181 files changed

+6060
-9939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+6060
-9939
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ updates:
5555
playwright:
5656
patterns:
5757
- "@playwright*"
58+
- "playwright*"
5859
angular:
5960
patterns:
6061
- "@angular*"

.github/workflows/02-e2e-foundations.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,14 @@ jobs:
1717
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1818
container:
1919
image: mcr.microsoft.com/playwright:v${{ inputs.version }}
20+
options: --user 1001
2021
steps:
2122
- name: ⏬ Checkout repo
2223
uses: actions/checkout@v4
2324

2425
- name: 🔄 Init Cache
2526
uses: ./.github/actions/npm-cache
2627

27-
- name: 📲 Install esbuild (binary workaround)
28-
run: npm i -D esbuild-linux-64
29-
3028
- name: ⏬ Download foundations build
3129
uses: actions/download-artifact@v4
3230
with:
@@ -35,8 +33,6 @@ jobs:
3533

3634
- name: 👩‍🔬 Test with Playwright 🎭
3735
working-directory: ./packages/foundations
38-
env:
39-
HOME: /root
4036
run: npm run test:e2e
4137

4238
- name: 🆙 Upload test results

.github/workflows/02-e2e-regenerate.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,14 @@ jobs:
2323
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
2424
container:
2525
image: mcr.microsoft.com/playwright:v${{ inputs.version }}
26+
options: --user 1001
2627
steps:
2728
- name: ⏬ Checkout repo
2829
uses: actions/checkout@v4
2930

3031
- name: 🔄 Init Cache
3132
uses: ./.github/actions/npm-cache
3233

33-
- name: 📲 Install esbuild (binary workaround)
34-
run: npm i -D esbuild-linux-64
35-
3634
- name: ⏬ Download foundations build
3735
uses: actions/download-artifact@v4
3836
with:
@@ -68,7 +66,6 @@ jobs:
6866
- name: 👩‍🔬 Generate snapshots 🎭
6967
shell: bash
7068
env:
71-
HOME: /root
7269
TYPE: ${{ inputs.type }}
7370
NEXT_PUBLIC_BASE_PATH: ${{ inputs.path }}
7471
run: |

.github/workflows/02-e2e-showcases.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
2424
container:
2525
image: mcr.microsoft.com/playwright:v${{ inputs.version }}
26+
options: --user 1001
2627
strategy:
2728
fail-fast: false
2829
matrix:
@@ -35,9 +36,6 @@ jobs:
3536
- name: 🔄 Init Cache
3637
uses: ./.github/actions/npm-cache
3738

38-
- name: 📲 Install esbuild (binary workaround)
39-
run: npm i -D esbuild-linux-64
40-
4139
- name: ⏬ Download foundations build
4240
uses: actions/download-artifact@v4
4341
with:
@@ -72,7 +70,6 @@ jobs:
7270
- name: 👩‍🔬 Test showcase with Playwright 🎭
7371
shell: bash
7472
env:
75-
HOME: /root
7673
NEXT_PUBLIC_BASE_PATH: ${{ inputs.path }}
7774
run: |
7875
ls ./build-showcases${{ inputs.path }}

.github/workflows/02-e2e.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1818
container:
1919
image: mcr.microsoft.com/playwright:v${{ inputs.version }}
20+
options: --user 1001
2021
strategy:
2122
fail-fast: false
2223
matrix:
@@ -30,9 +31,6 @@ jobs:
3031
- name: 🔄 Init Cache
3132
uses: ./.github/actions/npm-cache
3233

33-
- name: 📲 Install esbuild (binary workaround)
34-
run: npm i -D esbuild-linux-64
35-
3634
- name: ⏬ Download foundations build
3735
uses: actions/download-artifact@v4
3836
with:
@@ -58,8 +56,6 @@ jobs:
5856

5957
- name: 👩‍🔬 Test with Playwright 🎭
6058
working-directory: ./output/${{ steps.workingDirectory.outputs.dir }}
61-
env:
62-
HOME: /root
6359
run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
6460

6561
- name: 🔣 Print GitHub Report
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- listitem:
2-
- group: Test chevron_down" / "
2+
- group: Test
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- listitem:
2-
- group: Test chevron_down" / "
2+
- group: Test
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
- listitem:
2-
- group: Test chevron_down" / "
2+
- group: Test
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
- main:
22
- heading "DBAccordionItem" [level=1]
3-
- link "Density arrow_up_right\" / \""
3+
- link "Density"
44
- listitem:
5-
- group: Functional chevron_down" / "
5+
- group: Functional
66
- listitem:
7-
- group: (Default) Regular chevron_down" / "
7+
- group: (Default) Regular
88
- listitem:
9-
- group: Expressive chevron_down" / "
10-
- link "Disabled arrow_up_right\" / \""
9+
- group: Expressive
10+
- link "Disabled"
1111
- listitem:
12-
- group: (Default) False chevron_down" / "
12+
- group: (Default) False
1313
- listitem:
14-
- group [disabled]: True chevron_down" / "
15-
- link "Open arrow_up_right\" / \""
14+
- group [disabled]: "True"
15+
- link "Open"
1616
- listitem:
17-
- group: (Default) False chevron_down" / "
17+
- group: (Default) False
1818
- listitem:
19-
- group: True chevron_down" / " True
19+
- group: True True
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
- main:
22
- heading "DBAccordionItem" [level=1]
3-
- link "Density arrow_up_right\" / \""
3+
- link "Density"
44
- listitem:
5-
- group: Functional chevron_down" / "
5+
- group: Functional
66
- listitem:
7-
- group: (Default) Regular chevron_down" / "
7+
- group: (Default) Regular
88
- listitem:
9-
- group: Expressive chevron_down" / "
10-
- link "Disabled arrow_up_right\" / \""
9+
- group: Expressive
10+
- link "Disabled"
1111
- listitem:
12-
- group: (Default) False chevron_down" / "
12+
- group: (Default) False
1313
- listitem:
14-
- group [disabled]: True chevron_down" / "
15-
- link "Open arrow_up_right\" / \""
14+
- group [disabled]: "True"
15+
- link "Open"
1616
- listitem:
17-
- group: (Default) False chevron_down" / "
17+
- group: (Default) False
1818
- listitem:
19-
- group: True chevron_down" / " True
19+
- group: True True

0 commit comments

Comments
 (0)