mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
882dcc7b41
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
24 lines
423 B
YAML
24 lines
423 B
YAML
name: "Documentation"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**/*.md'
|
|
|
|
jobs:
|
|
markdownlint:
|
|
runs-on: ubuntu-latest
|
|
name: 'Format'
|
|
steps:
|
|
- uses: styfle/cancel-workflow-action@0.11.0
|
|
- uses: actions/checkout@v4
|
|
- name: Markdown Linting
|
|
uses: nosborn/github-action-markdown-cli@v3.3.0
|
|
with:
|
|
files: .
|