Skip to content

Commit 5c5a0c9

Browse files
authored
Merge upstream changes
merge upstream
2 parents e4a182b + 0fe3651 commit 5c5a0c9

File tree

344 files changed

+7974
-7222
lines changed

Some content is hidden

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

344 files changed

+7974
-7222
lines changed

.github/actions/run-test/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ runs:
4141
npm ci
4242
echo "::endgroup::"
4343
shell: bash
44-
env:
45-
DEBUG: pw:install
46-
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
4744
- run: |
4845
echo "::group::npm run build"
4946
npm run build

.github/workflows/cherry_pick_into_release_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_OUTPUT
6060
git checkout -b "$BRANCH_NAME"
6161
git push origin $BRANCH_NAME
62-
- uses: actions/create-github-app-token@v1
62+
- uses: actions/create-github-app-token@v2
6363
id: app-token
6464
with:
6565
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}

.github/workflows/create_test_report.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
node-version: 18
2121
- run: npm ci
2222
env:
23-
DEBUG: pw:install
24-
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
2523
ELECTRON_SKIP_BINARY_DOWNLOAD: 1
2624
- run: npm run build
2725

.github/workflows/infra.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
node-version: 18
2525
- run: npm ci
2626
- run: npm run build
27-
- run: npx playwright install-deps
28-
- run: npx playwright install
27+
- run: npx playwright install --with-deps
2928
- run: npm run lint
3029
- name: Verify clean tree
3130
run: |

.github/workflows/merge.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export default {
22
testDir: '../../tests',
3-
reporter: [[require.resolve('../../packages/playwright-dashboard/lib/ghaMarkdownReporterg')], ['html']]
3+
reporter: [[require.resolve('../../packages/playwright-dashboard/lib/ghaMarkdownReporter')], ['html']]
44
};

.github/workflows/pr_check_client_side_changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository == 'microsoft/playwright'
1717
steps:
1818
- uses: actions/checkout@v4
19-
- uses: actions/create-github-app-token@v1
19+
- uses: actions/create-github-app-token@v2
2020
id: app-token
2121
with:
2222
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}
@@ -46,7 +46,7 @@ jobs:
4646
const title = '[Ports]: Backport client side changes for ' + currentPlaywrightVersion;
4747
for (const repo of ['playwright-python', 'playwright-java', 'playwright-dotnet']) {
4848
const { data: issuesData } = await github.rest.search.issuesAndPullRequests({
49-
q: `is:issue is:open repo:microsoft/${repo} in:title "${title}" author:playwrightmachine`
49+
q: `is:issue is:open repo:microsoft/${repo} in:title "${title}"`
5050
})
5151
let issueNumber = null;
5252
let issueBody = '';

.github/workflows/publish_canary.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
registry-url: 'https://registry.npmjs.org'
2929
- run: npm ci
3030
- run: npm run build
31-
- run: npx playwright install-deps
3231
- name: "@next: publish with commit timestamp (triggered manually)"
3332
if: contains(github.ref, 'main') && github.event_name == 'workflow_dispatch'
3433
run: |
@@ -72,7 +71,7 @@ jobs:
7271
- uses: actions/setup-node@v4
7372
with:
7473
node-version: 18
75-
- uses: actions/create-github-app-token@v1
74+
- uses: actions/create-github-app-token@v2
7675
id: app-token
7776
with:
7877
app-id: ${{ vars.PLAYWRIGHT_APP_ID }}

.github/workflows/publish_release_docker.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
platforms: arm64
3030
- run: npm ci
3131
- run: npm run build
32-
- run: npx playwright install-deps
3332
- name: Azure Login
3433
uses: azure/login@v2
3534
with:

.github/workflows/publish_release_driver.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
registry-url: 'https://registry.npmjs.org'
2525
- run: npm ci
2626
- run: npm run build
27-
- run: npx playwright install-deps
2827
- run: utils/build/build-playwright-driver.sh
2928
- name: Azure Login
3029
uses: azure/login@v2

.github/workflows/publish_release_npm.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
registry-url: 'https://registry.npmjs.org'
2424
- run: npm ci
2525
- run: npm run build
26-
- run: npx playwright install-deps
2726
- run: utils/publish_all_packages.sh --release-candidate
2827
if: ${{ github.event.release.prerelease }}
2928
env:

0 commit comments

Comments
 (0)