From 8fa13641e9a1c0d5699894547e55ae65ab10ba5f Mon Sep 17 00:00:00 2001 From: Alexandre Negrel Date: Thu, 9 May 2024 22:06:43 +0200 Subject: [PATCH] update Makefile --- Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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