pro documentation link updates in the kubefirst repo (#2421) #981
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 Syntax Validation | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| markdown-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout this repository | |
| uses: actions/checkout@v4.0.0 | |
| - name: Validate Markdown .md | |
| uses: DavidAnson/markdownlint-cli2-action@v13.0.0 | |
| with: | |
| config: .markdownlint.json | |
| globs: "README.md" |