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 0444d7a commit 62012feCopy full SHA for 62012fe
.github/workflows/actions.yml
@@ -45,11 +45,16 @@ jobs:
45
46
- run: npm install -g [email protected]
47
- env:
48
+ MARKDOWNLINT_CONFIG: ".github/.markdownlint.yaml"
49
MARKDOWNLINT_RULES: ".github/markdownlint-custom/rules.js"
50
# Markdownlint will fail if no arguments are provided.
51
# In that case check README.md.
52
FILES: ${{ steps.changed-files.outputs.all_changed_files || 'README.md' }}
- 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 }}
58
59
cpplint:
60
runs-on: ubuntu-latest
0 commit comments