1
0

Makefile 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # Canonical task runner. Mirrors .github/workflows/ci.yml so `make verify`
  2. # reproduces the PR gate locally. Run `make help` for the list.
  3. SHELL := bash
  4. GO_PKGS = $(shell go list ./... | grep -v '/frontend/node_modules/')
  5. FRONTEND = frontend
  6. .DEFAULT_GOAL := help
  7. .PHONY: help
  8. help: ## Show this help
  9. @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
  10. awk 'BEGIN {FS = ":.*?## "}; {printf " %-14s %s\n", $$1, $$2}'
  11. # go:embed of internal/web/dist needs the dir to exist even when the
  12. # frontend bundle has not been built. CI stubs it the same way.
  13. .PHONY: dist-stub
  14. dist-stub:
  15. @mkdir -p internal/web/dist && touch internal/web/dist/.gitkeep
  16. .PHONY: gen
  17. gen: ## Regenerate Zod schemas + OpenAPI from Go sources
  18. cd $(FRONTEND) && npm run gen
  19. .PHONY: gen-check
  20. gen-check: gen ## Fail if generated files are stale
  21. git diff --exit-code -- frontend/src/generated frontend/public/openapi.json
  22. .PHONY: lint-go
  23. lint-go: dist-stub ## golangci-lint on Go sources
  24. golangci-lint run
  25. .PHONY: lint-fe
  26. lint-fe: ## oxlint on frontend sources
  27. cd $(FRONTEND) && npm run lint
  28. .PHONY: lint
  29. lint: lint-go lint-fe ## All linters
  30. .PHONY: format-check
  31. format-check: ## oxfmt in check mode on frontend sources
  32. cd $(FRONTEND) && npm run format:check
  33. .PHONY: typecheck
  34. typecheck: ## tsc --noEmit
  35. cd $(FRONTEND) && npm run typecheck
  36. .PHONY: msw-worker-check
  37. msw-worker-check: ## Verify the tracked worker matches the installed MSW runtime
  38. cmp $(FRONTEND)/public/mockServiceWorker.js $(FRONTEND)/node_modules/msw/lib/mockServiceWorker.js
  39. .PHONY: test-go
  40. test-go: dist-stub ## Go tests (shuffle, no cache)
  41. go test -shuffle=on -count=1 $(GO_PKGS)
  42. .PHONY: race
  43. race: dist-stub ## Go tests with the race detector (needs a C compiler)
  44. go test -race -shuffle=on -count=1 $(GO_PKGS)
  45. .PHONY: test-fe
  46. test-fe: ## Frontend tests (vitest)
  47. cd $(FRONTEND) && npm test
  48. .PHONY: test
  49. test: test-go test-fe ## All tests
  50. .PHONY: vulncheck
  51. vulncheck: dist-stub ## govulncheck
  52. go run golang.org/x/vuln/cmd/govulncheck@latest ./...
  53. .PHONY: build-fe
  54. build-fe: ## Build the Vite bundles into internal/web/dist
  55. cd $(FRONTEND) && npm run build
  56. .PHONY: build
  57. build: build-fe ## Build the frontend then the Go binary
  58. go build ./...
  59. .PHONY: build-storybook
  60. build-storybook: ## Build the static Storybook (compile-checks all stories)
  61. cd $(FRONTEND) && npm run build-storybook
  62. # The PR gate. Matches ci.yml: codegen freshness, both linters, the formatter,
  63. # typecheck, both test suites, a full build, and the Storybook compile-check.
  64. .PHONY: verify
  65. verify: gen-check lint format-check typecheck msw-worker-check test build build-storybook ## Full local gate (mirrors CI)
  66. @echo "verify: OK"