feat!: leapfrogai-ui registry1 flavor integration and uds tasks refactor #448
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: | |
push: | |
branches: | |
- "main" | |
paths: | |
- README.md | |
- .github/*.md | |
- docs/**/*.md | |
- ".github/workflows/markdown-lint.yaml" | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- README.md | |
- .github/*.md | |
- docs/**/*.md | |
- ".github/workflows/markdown-lint.yaml" | |
concurrency: | |
group: markdown-lint-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
markdown-lint: | |
runs-on: ubuntu-latest | |
name: Lint Markdown Files | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- uses: DavidAnson/markdownlint-cli2-action@db43aef879112c3119a410d69f66701e0d530809 # v17.0.0 | |
with: | |
config: "./.markdownlint.json" | |
globs: | | |
README.md | |
.github/*.md | |
docs/**/*.md |