We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8279d8a commit 65407d3Copy full SHA for 65407d3
.github/workflows/lint.yml
@@ -0,0 +1,22 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint:
11
+ name: Lint
12
+ runs-on: ubuntu-latest
13
+ timeout-minutes: 10
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v5
17
18
+ - name: Markdown lint
19
+ uses: docker://avtodev/markdown-lint:v1
20
+ with:
21
+ config: '.markdownlint.yml'
22
+ args: '**/*.md'
.markdownlint.yml
@@ -0,0 +1,5 @@
+MD010: false
+MD013:
+ line_length: 1024
+MD046:
+ style: "fenced"
0 commit comments