mirror of
https://github.com/jimeh/release-please-manifest-action.git
synced 2026-02-18 16:56:39 +00:00
16 lines
354 B
Makefile
16 lines
354 B
Makefile
.PHONY: docs
|
|
docs: readme
|
|
|
|
.PHONY: readme
|
|
readme: check-npx action-docs
|
|
npx --yes prettier --print-width 80 --prose-wrap always --write README.md
|
|
|
|
.PHONY: action-docs
|
|
action-docs: check-npx
|
|
npx --yes action-docs --update-readme
|
|
|
|
.PHONY: check-npx
|
|
check-npx:
|
|
$(if $(shell which npx),,\
|
|
$(error No npx execuable found in PATH, please install NodeJS))
|