feat(deploy): publish Discord bot image
CI / validate (push) Successful in 4m39s
Release / release (push) Successful in 6m23s

This commit is contained in:
dmg
2026-08-01 15:47:27 -04:00
parent d91572b831
commit 478f3a3b87
8 changed files with 64 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
import { describe, expect, it } from "vitest";
import { GET } from "./route";
describe("health endpoint", () => {
it("reports process readiness without requiring external services", async () => {
const response = GET();
expect(response.status).toBe(200);
expect(response.headers.get("cache-control")).toBe("no-store");
expect(await response.json()).toEqual({ status: "ok" });
});
});
+10
View File
@@ -0,0 +1,10 @@
export function GET(): Response {
return Response.json(
{ status: "ok" },
{
headers: {
"Cache-Control": "no-store",
},
},
);
}