devops: call merge-reports with explicit config (#27965)

After https://github.com/microsoft/playwright/pull/27963 we have to
provide explicit merge config to disambiguate testDir.
This commit is contained in:
Yury Semikhatsky 2023-11-03 13:49:32 -07:00 committed by GitHub
parent f401a482d2
commit 738cbfc216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

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

4
.github/workflows/merge.config.ts vendored Normal file
View File

@ -0,0 +1,4 @@
export default {
testDir: '../../tests',
reporter: [['markdown'], ['html']]
};