We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8279d8a commit 2dbd595Copy full SHA for 2dbd595
2 files changed
.github/workflows/lint.yml
@@ -0,0 +1,31 @@
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
+ with:
18
+ fetch-depth: 1
19
20
+ - name: Get changed markdown files
21
+ id: changed-files
22
+ uses: tj-actions/changed-files@v44
23
24
+ files: |
25
+ **/*.md
26
27
+ - name: Markdown lint
28
+ uses: docker://avtodev/markdown-lint:v1
29
30
+ config: '.markdownlint.yml'
31
+ args: '${{ steps.changed-files.outputs.all_changed_files }}'
.markdownlint.yml
@@ -0,0 +1,5 @@
+MD010: false
+MD013:
+ line_length: 1024
+MD046:
+ style: "fenced"
0 commit comments