Skip to content

Commit 62012fe

Browse files
committed
test
1 parent 0444d7a commit 62012fe

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/actions.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,16 @@ jobs:
4545

4646
- run: npm install -g [email protected]
4747
- env:
48+
MARKDOWNLINT_CONFIG: ".github/.markdownlint.yaml"
4849
MARKDOWNLINT_RULES: ".github/markdownlint-custom/rules.js"
4950
# Markdownlint will fail if no arguments are provided.
5051
# In that case check README.md.
5152
FILES: ${{ steps.changed-files.outputs.all_changed_files || 'README.md' }}
52-
run: markdownlint --rules ${{ env.MARKDOWNLINT_RULES }} ${{ env.FILES }}
53+
run:
54+
markdownlint
55+
--rules ${{ env.MARKDOWNLINT_RULES }}
56+
--config ${{ env.MARKDOWNLINT_CONFIG }}
57+
${{ env.FILES }}
5358

5459
cpplint:
5560
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)