export NODE_ENV := development .PHONY: check install test fmt fmt-check secret-scan check: install fmt-check secret-scan test install: npm install test: bash tests/test-webhook-security.sh fmt: npx prettier --write . fmt-check: npx prettier --check . secret-scan: bash tools/secret-scan.sh .