Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
BluThaitanium committed Oct 13, 2021
1 parent 1fae3a2 commit 77fbaf2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Makefile
Expand Up @@ -20,9 +20,19 @@ help: ## Display the Make targets
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-25s\033[0m %s\n", $$1, $$2}'


.PHONY: verify_npm_packages $(fix)
verify_npm_packages: ## Update NPM packages
@python3 tools/python/verify_npm_packages.py 0
@echo "$@: OK"

.PHONY: verify_npm_packages $(fix)
verify_npm_packages: ## Verify NPM packages
@python3 tools/python/verify_npm_packages.py 1
@echo "$@: OK"

.PHONY: check_doc_links
check_doc_links: ## Check Markdown files for valid links
@python3 tools/python/verify_npm_packages.py
@pip3 show requests > /dev/null || pip3 install requests
@python3 tools/python/verify_doc_links.py
@echo "$@: OK"

0 comments on commit 77fbaf2

Please sign in to comment.