Skip to content

Commit e8d925e

Browse files
committed
Fix condition
1 parent ab3c5e2 commit e8d925e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ process.on("unhandledRejection", function (reason) {
7373
const text = report.results
7474
.map((report) => {
7575
let body = report.diff;
76-
if (!isCI) {
76+
if (isCI) {
7777
if (artifactUrl) {
7878
body = `**Visit [this link](${artifactUrl}) to download**`;
7979
} else {

0 commit comments

Comments
 (0)