We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac5f2e commit 9bb0d61Copy full SHA for 9bb0d61
browserstack-report-action/src/services/ReportProcessor.js
@@ -12,9 +12,9 @@ class ReportProcessor {
12
await summary.addHeading('BrowserStack Test Report');
13
14
let addToSummaryReport = this.reportData?.report?.basicHtml;
15
- addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
16
- core.info(`Report HTML: ${addToSummaryReport}`);
17
if (addToSummaryReport) {
+ addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
+ core.info(`Report HTML: ${addToSummaryReport}`);
18
await summary.addRaw(addToSummaryReport);
19
} else {
20
await summary.addRaw('⚠️ No report content available');
0 commit comments