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.
lint.yml
1 parent 878121a commit 272eab5Copy full SHA for 272eab5
.github/workflows/lint.yml
@@ -1,4 +1,4 @@
1
-name: Lint Markdown
+name: Lint
2
3
on: [push, pull_request]
4
@@ -11,8 +11,10 @@ jobs:
11
uses: actions/setup-node@v3
12
with:
13
node-version: '18'
14
- - run: npm install -g markdownlint-cli
15
- - run: markdownlint '**/*.md' --ignore-path=.gitignore
+ - name: "Lint markdown files"
+ run: |
16
+ npm install -g markdownlint-cli
17
+ markdownlint '**/*.md' --ignore-path=.gitignore
18
- name: "No trailing whitespaces at EOLs"
19
run: |
20
EXIT_CODE=0
0 commit comments