mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-28 01:15:10 +03:00
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:
parent
f401a482d2
commit
738cbfc216
2
.github/workflows/create_test_report.yml
vendored
2
.github/workflows/create_test_report.yml
vendored
@ -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
4
.github/workflows/merge.config.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
export default {
|
||||
testDir: '../../tests',
|
||||
reporter: [['markdown'], ['html']]
|
||||
};
|
Loading…
Reference in New Issue
Block a user