mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2025-04-03 21:48:39 +02:00
18 lines
466 B
YAML
18 lines
466 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: tj-actions/changed-files@v31.0.3
|
|
id: changed-files
|
|
with:
|
|
files: '**/*.md'
|
|
separator: "\n"
|
|
- uses: DavidAnson/markdownlint-cli2-action@v7
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
with:
|
|
globs: ${{ steps.changed-files.outputs.all_changed_files }}
|