diff --git a/Makefile b/Makefile index a2e9ff1..d44ba68 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ - .PHONY: start: deno task start @@ -7,6 +6,18 @@ start: lint: deno task check +.PHONY: fmt +fmt: + deno fmt + +.PHONY: fmt-check +fmt-check: + deno fmt --check + +.PHONY: test +test: lint fmt + deno test + .PHONY: build build: deno task build