14 lines
225 B
YAML
14 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 .
|