Skip to content

Commit 36419a7

Browse files
committed
Avoid sending status reports in test mode
1 parent e9d5234 commit 36419a7

6 files changed

+16
-2
lines changed

lib/actions-util.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-lib.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/upload-lib.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/actions-util.ts

+6
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,12 @@ export async function sendStatusReport<S extends StatusReportBase>(
600600
): Promise<boolean> {
601601
const statusReportJSON = JSON.stringify(statusReport);
602602
core.debug(`Sending status report: ${statusReportJSON}`);
603+
// If in test mode we don't want to upload the results
604+
const testMode = process.env["TEST_MODE"] === "true" || false;
605+
if (testMode) {
606+
core.debug("In test mode. Status reports are not uploaded.");
607+
return true;
608+
}
603609

604610
const nwo = getRequiredEnvParam("GITHUB_REPOSITORY");
605611
const [owner, repo] = nwo.split("/");

src/upload-lib.ts

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ async function uploadPayload(
100100
// If in test mode we don't want to upload the results
101101
const testMode = process.env["TEST_MODE"] === "true" || false;
102102
if (testMode) {
103+
logger.debug("In test mode. Results are not uploaded.");
103104
return;
104105
}
105106

0 commit comments

Comments
 (0)