We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 762e715 commit ec05aa0Copy full SHA for ec05aa0
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ markdown:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - name: List markdown files
19
+ run: |
20
+ find . -name '*.md' -not -path './.git/*' | xargs -r ls -la
21
+ echo "$(find . -name '*.md' -not -path './.git/*' | wc -l) markdown files"
22
23
+ - name: Lint markdown (advisory)
24
+ uses: DavidAnson/markdownlint-cli2-action@v16
25
+ continue-on-error: true
26
+ with:
27
+ globs: '**/*.md'
0 commit comments