mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-22 11:51:23 +00:00
18 lines
464 B
TypeScript
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;
|