[ACS-12465] Connect teams channel with github CI in cron multibrowser workflow for easier raporting (#5344)

* [ACS-12465] added teams raport

* [ACS-12465] raport fix 1

* [ACS-12465] raport name update

* [ACS-12465] sonar fix + small changes to formatting due to size limit

* [ACS-12465] review fixes 2

* [ACS-12465] added warning for >2% failure rate and new column for only excluded

* [ACS-12465] changed column naming
This commit is contained in:
Adam Świderski
2026-08-13 10:01:54 +02:00
committed by GitHub
parent 7924d93922
commit 748c73c43f
5 changed files with 431 additions and 1 deletions
@@ -61,5 +61,11 @@ export const getReporter = (): ReporterDescription[] => {
return [['html']];
}
return [['@reportportal/agent-js-playwright', getReportPortalConfig()], ['github']];
const reporters: ReporterDescription[] = [['@reportportal/agent-js-playwright', getReportPortalConfig()], ['github']];
if (env.E2E_BLOB_REPORT === 'true') {
reporters.push(['blob', { outputDir: env.PLAYWRIGHT_BLOB_DIR || 'blob-report' }]);
}
return reporters;
};