Skip to content

Commit 0234f94

Browse files
committed
rendering raw html
1 parent 077f49e commit 0234f94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browserstack-report-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38236,7 +38236,7 @@ class ReportProcessor {
3823638236
if (addToSummaryReport) {
3823738237
addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
3823838238
core.info(`Report HTML: ${addToSummaryReport}`);
38239-
await summary.addRaw(addToSummaryReport, true);
38239+
await summary.addRaw(addToSummaryReport, false);
3824038240
} else {
3824138241
await summary.addRaw('⚠️ No report content available', true);
3824238242
}

browserstack-report-action/src/services/ReportProcessor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ReportProcessor {
1515
if (addToSummaryReport) {
1616
addToSummaryReport = `<html> ${addToSummaryReport} </html>`;
1717
core.info(`Report HTML: ${addToSummaryReport}`);
18-
await summary.addRaw(addToSummaryReport, true);
18+
await summary.addRaw(addToSummaryReport, false);
1919
} else {
2020
await summary.addRaw('⚠️ No report content available', true);
2121
}

0 commit comments

Comments
 (0)