knip
Version:
Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects
21 lines (20 loc) • 330 B
TypeScript
type Step = {
run?: string;
uses?: string;
with?: {
repository: string;
path: string;
};
'working-directory'?: string;
};
type Steps = Step[];
export type Job = {
steps: Steps;
};
export type Runs = {
using: string;
main?: string;
pre?: string;
post?: string;
};
export {};