15 lines
225 B
YAML
15 lines
225 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: lint
|
||
|
|
||
|
steps:
|
||
|
- name: yaml lint
|
||
|
image: cytopia/yamllint
|
||
|
commands:
|
||
|
- yamllint .
|
||
|
|
||
|
- name: markdown lint
|
||
|
image: pipelinecomponents/markdownlint:latest
|
||
|
commands:
|
||
|
- mdl --style all --warnings .
|