UNPKG

@techmynder/gitlab-ci-file-lint

Version:

Validate a GitLab pipeline YAML file using the official API.

9 lines (8 loc) 206 B
export declare type GitLabLintResult = { status: "valid" | "invalid"; errors: string[]; warnings: string[]; }; export declare type LintResult = { file: string; } & GitLabLintResult;