Skip to content

Commit a6a6473

Browse files
committed
Fix markdownlint errors part 1
1 parent 0a9f1db commit a6a6473

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
git diff origin/${{ github.base_ref }} *.md translations/*/*.md \
2121
| sed -n '/^+/p' | sed '/^+++/d' | sed 's/^+//' \
2222
> ${{ runner.temp }}/diff.md
23-
- uses: DavidAnson/markdownlint-cli2-action@v17
23+
- name: Output diff
24+
run: cat ${{ runner.temp }}/diff.md
25+
- name: Check diff with markdownlint
26+
uses: DavidAnson/markdownlint-cli2-action@v17
2427
with:
2528
globs: "${{ runner.temp }}/diff.md"

0 commit comments

Comments
 (0)