Lumbridge Bench
CI / verify (push) Successful in 24s
CI / deploy (push) Failing after 1m14s

This commit is contained in:
Karti Tripathi
2026-08-04 00:44:07 -07:00
commit 006feee0f7
65 changed files with 13516 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { getRuns } from "@/lib/results";
export const dynamic = "force-dynamic";
/** Liveness probe used by the deploy verify step. */
export async function GET() {
const runs = getRuns();
return Response.json({
ok: true,
runs: runs.length,
latest: runs[0]?.timestamp ?? null,
});
}