Skip to content

Commit afa2bf8

Browse files
authored
Forgot make in the workflow command (#1563)
1 parent 9ef90ae commit afa2bf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ jobs:
8080
make chlog-preview 2> changelog_preview.md
8181
cat changelog_preview.md
8282
- name: Run markdown-link-check
83-
run: markdown-link-check-changelog-preview
83+
run: make markdown-link-check-changelog-preview

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ markdown-link-check:
7272
.PHONY: markdown-link-check-changelog-preview
7373
markdown-link-check-changelog-preview:
7474
@if ! npm ls markdown-link-check; then npm install; fi
75-
npx --no -- markdown-link-check --verbose --config .markdown_link_check_config.json changelog_preview.md;
75+
npx --no -- markdown-link-check --quiet --config .markdown_link_check_config.json changelog_preview.md;
7676

7777
# This target runs markdown-toc on all files that contain
7878
# a comment <!-- tocstop -->.

0 commit comments

Comments
 (0)