refactor(state): inline canonical database schemas at build

This commit is contained in:
Peter Steinberger
2026-08-01 06:53:57 -07:00
parent 56ffa2bca4
commit b2ec661afe
26 changed files with 141 additions and 2885 deletions

View File

@@ -387,6 +387,14 @@ describe("resolveBuildAllSteps", () => {
);
}
expect(unified.cache?.env).toContain("OPENCLAW_BUILD_PRIVATE_QA");
expect(unified.cache?.inputs).toEqual(
expect.arrayContaining([
expect.objectContaining({
path: "src",
extensions: expect.arrayContaining([".sql"]),
}),
]),
);
expect(resolveBuildAllStepOnCacheHit(getBuildAllStep("copy-export-html-templates"))).toBeNull();
});