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 52449f1 commit 121ed21Copy full SHA for 121ed21
.github/workflows/markdown-lint.yml
@@ -0,0 +1,19 @@
1
+name: Markdown Lint
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
8
+jobs:
9
+ markdownlint:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v3
15
16
+ - name: Run Markdown Lint
17
+ uses: DavidAnson/markdownlint-cli2-action@v16
18
+ with:
19
+ globs: "**/*.md"
0 commit comments