Forgot `make` in the workflow command (#1563)

This commit is contained in:
Joao Grassi 2024-11-08 17:32:14 +01:00 committed by GitHub
parent 9ef90ae576
commit afa2bf8e07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -80,4 +80,4 @@ jobs:
make chlog-preview 2> changelog_preview.md make chlog-preview 2> changelog_preview.md
cat changelog_preview.md cat changelog_preview.md
- name: Run markdown-link-check - name: Run markdown-link-check
run: markdown-link-check-changelog-preview run: make markdown-link-check-changelog-preview

View File

@ -72,7 +72,7 @@ markdown-link-check:
.PHONY: markdown-link-check-changelog-preview .PHONY: markdown-link-check-changelog-preview
markdown-link-check-changelog-preview: markdown-link-check-changelog-preview:
@if ! npm ls markdown-link-check; then npm install; fi @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 # This target runs markdown-toc on all files that contain
# a comment <!-- tocstop -->. # a comment <!-- tocstop -->.