mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-11-21 22:01:30 +01:00
19 lines
485 B
YAML
19 lines
485 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: tj-actions/changed-files@v45
|
|
id: changed-files
|
|
with:
|
|
files: '**/*.md'
|
|
separator: ","
|
|
- uses: DavidAnson/markdownlint-cli2-action@v18
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
with:
|
|
globs: ${{ steps.changed-files.outputs.all_changed_files }}
|
|
separator: ","
|