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
|
- name: Merge reports
|
||||||
run: |
|
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:
|
env:
|
||||||
NODE_OPTIONS: --max-old-space-size=4096
|
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 a new issue