20 lines
320 B
YAML
20 lines
320 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: lint
|
|
|
|
steps:
|
|
- name: yaml linting
|
|
image: pipelinecomponents/yamllint
|
|
commands:
|
|
- yamllint .
|
|
|
|
- name: markdown linting
|
|
image: 06kellyjac/markdownlint-cli
|
|
commands:
|
|
- markdownlint . -i themes
|
|
when:
|
|
status:
|
|
- success
|
|
- failure
|