Bump DavidAnson/markdownlint-cli2-action from 19.0.0 to 19.1.0 (#333) #284
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
workflow_dispatch: | |
jobs: | |
validate-documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- name: Markdown Lint check | |
uses: DavidAnson/markdownlint-cli2-action@v19.1.0 | |
with: | |
globs: '**/*.md' | |
- name: lychee Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@v2.2.0 | |
with: | |
args: -v -n "*.md" "**/*.md" | |
fail: true | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'release PR') }} |