Markdownlint fixes kyu8 #5
Workflow file for this run
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
name: 'Markdown Lint' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
workflow_call: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout v4 | |
uses: actions/checkout@v4 | |
#- name: Install markdownlint | |
# run: | | |
# npm install markdownlint-cli2 --global | |
# markdownlint-cli2 "**/*.md" --config ".markdownlint-cli2.yaml" | |
- name: markdownlint-cli2-action v16 | |
uses: DavidAnson/markdownlint-cli2-action@v16 | |
with: | |
config: '.markdownlint-cli2.yaml' | |
fix: true | |
globs: '**/*.md' | |
separator: ',' |