We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b42ea commit 2b6e3adCopy full SHA for 2b6e3ad
.github/workflows/markdownlinter.yml
@@ -0,0 +1,14 @@
1
+name: Check Markdown
2
+# Controls when the workflow will run
3
+on: [push, pull_request, workflow_dispatch]
4
+jobs:
5
+ # This workflow contains a single job called "lint"
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ # Checks-out repository under $GITHUB_WORKSPACE, so job can access it
10
+ - uses: actions/checkout@v4
11
+ # Runs markdown linter on all markdown files
12
+ - uses: DavidAnson/markdownlint-cli2-action@v20
13
+ with:
14
+ globs: '**/*.md'
0 commit comments