UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

11 lines (8 loc) 292 B
import { readConfig } from "./config"; import { generatePipelineFiles } from "./pipeline/generatePipelineFiles"; readConfig().then(async (result) => { if (!result?.config) { throw new Error("no catladder config found"); } await generatePipelineFiles(result.config, "gitlab"); });