devops: migrate away from merge.config.ts (#34802)

This commit is contained in:
Max Schmitt 2025-02-14 11:58:37 +01:00 committed by GitHub
parent e6b405c012
commit df6e3f043a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 5 deletions

View File

@ -33,7 +33,7 @@ jobs:
- name: Merge reports
run: |
npx playwright merge-reports --config .github/workflows/merge.config.ts ./all-blob-reports
npx playwright merge-reports --reporter=html,packages/playwright/lib/reporters/markdown.js ./all-blob-reports
env:
NODE_OPTIONS: --max-old-space-size=8192

View File

@ -1,4 +0,0 @@
export default {
testDir: '../../tests',
reporter: [[require.resolve('../../packages/playwright/lib/reporters/markdown')], ['html']]
};