Skip to content

Commit

Permalink
fix debug
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm committed Dec 9, 2024
1 parent 2311985 commit 0c6d2dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ function run() {
core.startGroup("Load reports");
referenceContent !== null && referenceContent !== void 0 ? referenceContent : (referenceContent = compareContent); // if no source reports were loaded, defaults to the current reports
core.info("About to check memory reports");
core.info("memory report ${memory_report}");
core.info(`memory report ${memory_report}"`);
if (memory_report) {
core.info(`Format Memory markdown rows`);
const memoryContent = (0, report_1.memoryReports)(compareContent);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async function run() {
core.startGroup("Load reports");
referenceContent ??= compareContent; // if no source reports were loaded, defaults to the current reports
core.info("About to check memory reports");
core.info("memory report ${memory_report}");
core.info(`memory report ${memory_report}"`);

if (memory_report) {
core.info(`Format Memory markdown rows`);
Expand Down

0 comments on commit 0c6d2dc

Please sign in to comment.