Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 14cd521

Browse files
committed
fix: only show lengths on gh action
1 parent c4622f6 commit 14cd521

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/api/system/checks/route.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ export async function GET(request, { params }) {
113113
console.log("CHECKS PERFORMED", runs);
114114

115115
return Response.json({
116-
runs,
117-
ignores: repoStatus.ignore,
118-
errors: repoStatus.error,
116+
runs: runs.length,
117+
ignores: repoStatus.ignore.length,
118+
errors: repoStatus.error.length,
119119
});
120120
}

0 commit comments

Comments
 (0)