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 480f33d commit 6d2c193Copy full SHA for 6d2c193
.github/workflows/check-markdown.yml
@@ -16,6 +16,6 @@ jobs:
16
- name: Install dependencies
17
run: npm ci
18
- name: Check Markdown links
19
- run: npm run check:markdown
+ run: npm run check:markdown-links
20
- name: Check Markdown formatting
21
run: npm run format:markdown:check
package.json
@@ -16,7 +16,7 @@
"format:markdown": "prettier --write \"**/*.md\"",
"format:markdown:check": "prettier --check \"**/*.md\"",
"lint": "eslint",
- "check:markdown": "find *.md docs/*.md -print0 | xargs -0 -n1 markdown-link-check",
+ "check:markdown-links": "find *.md docs/*.md -print0 | xargs -0 -n1 markdown-link-check",
"update:cypress": "./scripts/update-cypress-latest.sh",
"prepare": "husky"
22
},
0 commit comments