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 ebfa77e commit a999ed7Copy full SHA for a999ed7
.github/workflows/pr.yaml
@@ -0,0 +1,17 @@
1
+on: [pull_request]
2
+
3
+permissions:
4
+ contents: read
5
+ pull-requests: read
6
+ checks: write
7
8
+concurrency:
9
+ group: ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
12
+jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: DavidAnson/markdownlint-cli2-action@v17
.pre-commit-config.yaml
@@ -0,0 +1,7 @@
+default_language_version:
+ python: python3.12
+repos:
+- repo: https://github.com/DavidAnson/markdownlint-cli2
+ rev: v0.14.0
+ hooks:
+ - id: markdownlint-cli2
0 commit comments