New weaknesses regarding 3rd party libs #45
Workflow file for this run
This file contains hidden or 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 Linter | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
markdown-lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install markdownlint-rule-search-replace plugin | |
run: npm install markdownlint-rule-search-replace --save-dev | |
- name: markdownlint-cli2 | |
uses: DavidAnson/markdownlint-cli2-action@v16.0.0 | |
with: | |
config: ".markdownlint.jsonc" | |
globs: | | |
"**/*.md" | |
"!README.md" |