Files
openclaw/scripts/lib/ci-changed-node-test-plan.d.mts

18 lines
464 B
TypeScript

export type ChangedNodeTestShard = {
checkName: string;
configs: string[];
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 hasQaSmokeAffectingChange(changedPaths: string[]): boolean;