Forgot `make` in the workflow command (#1563)
This commit is contained in:
parent
9ef90ae576
commit
afa2bf8e07
|
|
@ -80,4 +80,4 @@ jobs:
|
|||
make chlog-preview 2> changelog_preview.md
|
||||
cat changelog_preview.md
|
||||
- name: Run markdown-link-check
|
||||
run: markdown-link-check-changelog-preview
|
||||
run: make markdown-link-check-changelog-preview
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -72,7 +72,7 @@ markdown-link-check:
|
|||
.PHONY: markdown-link-check-changelog-preview
|
||||
markdown-link-check-changelog-preview:
|
||||
@if ! npm ls markdown-link-check; then npm install; fi
|
||||
npx --no -- markdown-link-check --verbose --config .markdown_link_check_config.json changelog_preview.md;
|
||||
npx --no -- markdown-link-check --quiet --config .markdown_link_check_config.json changelog_preview.md;
|
||||
|
||||
# This target runs markdown-toc on all files that contain
|
||||
# a comment <!-- tocstop -->.
|
||||
|
|
|
|||
Loading…
Reference in New Issue