UNPKG

singularci

Version:

SingularCI is a DSL transpiler used to generate CI/CD configuration files for existing CI platforms

15 lines (13 loc) 268 B
export type TriggerType = { branches: string[] } export type StageObject = { container?: string, 'runs-on'?: string, needs?: string[], steps: string[] }; export type GitHubTriggerObject = { push?: TriggerType, pull_request?: TriggerType }