mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
6c25c28801
* add markdownlint action * add markdownlint config * add dummy change to MD file * rename job * run on master branch * remove ignore files * add dummy change * revert dummy change * Update markdown.yml * Update .markdownlint.yml * Update README.md * Update .markdownlint.yml * Update markdown.yml
23 lines
358 B
YAML
23 lines
358 B
YAML
name: "Documentation"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**/*.md'
|
|
|
|
jobs:
|
|
markdownlint:
|
|
runs-on: ubuntu-latest
|
|
name: 'Format'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Markdown Linting
|
|
uses: nosborn/github-action-markdown-cli@v1.1.1
|
|
with:
|
|
files: .
|