fix(ci): stabilize CLI startup memory gate

This commit is contained in:
Peter Steinberger
2026-07-13 02:31:44 -04:00
parent 71295851d7
commit 82d53fd91d
3 changed files with 18 additions and 2 deletions
+3 -1
View File
@@ -98,7 +98,9 @@ function resolveDefaultLimitsMb(platform = process.platform) {
// Plugin discovery is heavier than help, but must stay below the doctor/channel
// runtime graph that an empty metadata-only invocation must not import.
pluginsList: platform === "darwin" ? 500 : 400,
statusJson: 400,
// Node 24 status startup sits near 400 MB; retain regression signal without
// failing on sub-megabyte runner RSS variance.
statusJson: 425,
gatewayStatus: 500,
};
}