From 5ab352da1190e995edc68101d288a162269e7d47 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Wed, 24 Jun 2026 17:41:51 +0900 Subject: [PATCH] chore(dev): tweak backend-memory-report --- .github/scripts/backend-memory-report.mjs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/scripts/backend-memory-report.mjs b/.github/scripts/backend-memory-report.mjs index a04ee187a5..6ea8a5b5af 100644 --- a/.github/scripts/backend-memory-report.mjs +++ b/.github/scripts/backend-memory-report.mjs @@ -443,12 +443,10 @@ function renderJsFootprintSection(base, head) { '', renderJsFootprintMetricTable(base, head), '', - '#### Load Phase Breakdown', - '', - renderJsFootprintPhaseTable(base, head), - '', - '', - '', + //'#### Load Phase Breakdown', + //'', + //renderJsFootprintPhaseTable(base, head), + //'', ]; for (const block of [ @@ -461,6 +459,9 @@ function renderJsFootprintSection(base, head) { lines.push(''); } + lines.push(''); + lines.push(''); + return lines.join('\n'); }