mirror of https://gitlab.com/curben/blog
27 lines
749 B
Markdown
27 lines
749 B
Markdown
---
|
|
title: How to check validity of GitLab CI config
|
|
date: 2018-10-25
|
|
tags:
|
|
- GitLab
|
|
---
|
|
|
|
It can be frustrating after you push the changes you made to `.gitlab-ci.yml`, only to discover later that it's invalid on gitlab.com. Here's how to verify/lint the config.
|
|
|
|
<!-- more -->
|
|
|
|
Login to GitLab.com and navigate to any of your repo or project. It must be under your account. If you don't have one, simply create a new project or fork one.
|
|
|
|
Simply add `/-/ci/lint` to the end of your repo link and navigate to that link.
|
|
|
|
For example,
|
|
|
|
```
|
|
https://gitlab.com/curben/blog/-/ci/lint
|
|
```
|
|
|
|
This is what it looks like,
|
|
|
|
{% cloudinary '20181025/lint.png' 'Verify .gitlab-ci.yml online' %}
|
|
|
|
Simply paste the content of your `.gitlab-ci.yml` and 'Validate'.
|