mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
b28df9d9dd
* uses: styfle/cancel-workflow-action@0.10.0 * specify pull request repository directly Co-authored-by: Alexey Matvievsky <alexey.matvievsky@sap.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.10.0
|
|
- uses: actions/checkout@v2
|
|
- name: Markdown Linting
|
|
uses: nosborn/github-action-markdown-cli@v1.1.1
|
|
with:
|
|
files: .
|