From ea5d89b47a5424fc81e99934183c0ad7a0cf2426 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sun, 15 Feb 2026 08:41:08 -0800 Subject: Create 'make check' unified workflow and fix various lint issues --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fe066b3..7709cd6 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ VERSION=0.3 BUILD=`git rev-parse HEAD` LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.Build=${BUILD}" -.PHONY: default all clean ui build install test test-race test-frontend test-e2e ui-check lint ci run dev docs +.PHONY: default all clean ui build install test test-race test-frontend test-e2e ui-check lint check ci run dev docs default: build @@ -49,9 +49,11 @@ ui-check: ui git diff --exit-code web/dist/v2/ lint: - ${GO} vet ./... + golangci-lint run cd frontend && ${NPM} run lint +check: lint test + ci: lint test-race test-frontend ui-check test-e2e run: build -- cgit v1.2.3