followingell
followingell

Reputation: 501

Does GitHub have an equivalent of GitLab's CI Lint tool?

GitLab has a tool, CI Lint, which can be used to validate and check CI/CD syntax for GitLab Pipelines.

Does GitHub have an equivalent tool for GitHub Actions?

I have searched but cannot find any equivalent so far...

Upvotes: 4

Views: 936

Answers (2)

followingell
followingell

Reputation: 501

FYI as of 28th March 2023 checking syntax for GitHub Actions can now be done via the GitHub Actions VS Code extension.

Quoting from the announcement blog post:

Validation and code completion for the YAML schema and GitHub Actions Expressions. Get instant validation and code completion for the workflow schema, expression functions, event payloads, and job or step outputs.

Upvotes: 1

Chris Batchelor
Chris Batchelor

Reputation: 93

A bit of this is mentioned as a comment on your initial question, but I personally use the following:

Upvotes: 5

Related Questions