Skip to content

Commit 272eab5

Browse files
committed
rename lint.yml workflow
and group "lint markdown files" steps into one for clarity
1 parent 878121a commit 272eab5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Lint Markdown
1+
name: Lint
22

33
on: [push, pull_request]
44

@@ -11,8 +11,10 @@ jobs:
1111
uses: actions/setup-node@v3
1212
with:
1313
node-version: '18'
14-
- run: npm install -g markdownlint-cli
15-
- run: markdownlint '**/*.md' --ignore-path=.gitignore
14+
- name: "Lint markdown files"
15+
run: |
16+
npm install -g markdownlint-cli
17+
markdownlint '**/*.md' --ignore-path=.gitignore
1618
- name: "No trailing whitespaces at EOLs"
1719
run: |
1820
EXIT_CODE=0

0 commit comments

Comments
 (0)