Files
openclaw/scripts/lib/ci-changed-node-test-plan.d.mts
Christian Lallo 811444d6db fix(memory-core): avoid cubic MMR similarity rescans (#113359)
* fix(memory): avoid cubic MMR similarity rescans

* style(memory-core): oxfmt mmr.test.ts

* test(memory-core): allow packed CI integration tests

* fix(ci): serialize targeted memory-core tests

* fix(ci): pin agentic cli worker count

---------

Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
2026-07-29 03:53:43 +08:00

24 lines
611 B
TypeScript

export type ChangedNodeTestShard = {
checkName: string;
configs: string[];
planConcurrency?: number;
requiresDist: boolean;
runner: string;
shardName: string;
targets?: string[];
};
export function createChangedNodeTestShards(
changedPaths: string[],
options?: { cwd?: string },
): ChangedNodeTestShard[] | null;
export function hasBuildArtifactAffectingChange(changedPaths: string[]): boolean;
export function hasPromptSnapshotAffectingChange(
changedPaths: string[],
options?: { cwd?: string },
): boolean;
export function hasQaSmokeAffectingChange(changedPaths: string[]): boolean;