style: format

This commit is contained in:
radling005 2026-01-29 19:57:39 -06:00
parent 694b029fa9
commit 1ec476d142

View File

@ -466,7 +466,11 @@ export async function runHeartbeatOnce(opts: {
const heartbeatFilePath = path.join(workspaceDir, DEFAULT_HEARTBEAT_FILENAME);
try {
const heartbeatFileContent = await fs.readFile(heartbeatFilePath, "utf-8");
if (isHeartbeatContentEffectivelyEmpty(heartbeatFileContent) && !isExecEventReason && !isCronReason) {
if (
isHeartbeatContentEffectivelyEmpty(heartbeatFileContent) &&
!isExecEventReason &&
!isCronReason
) {
emitHeartbeatEvent({
status: "skipped",
reason: "empty-heartbeat-file",