ci: trim gateway watch build profile

This commit is contained in:
Peter Steinberger
2026-04-22 18:11:48 +01:00
parent 024592fb1d
commit 2afad03931
4 changed files with 12 additions and 3 deletions

View File

@@ -143,6 +143,14 @@ describe("resolveBuildAllSteps", () => {
]);
});
it("uses a minimal built runtime profile for gateway watch regression", () => {
expect(resolveBuildAllSteps("gatewayWatch").map((step) => step.label)).toEqual([
"tsdown",
"runtime-postbuild",
"build-stamp",
]);
});
it("does not cache plugin-sdk entry shims over compiled JS", () => {
const step = BUILD_ALL_STEPS.find((entry) => entry.label === "write-plugin-sdk-entry-dts");
expect(step).toBeTruthy();