1
0

Makefile 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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: ## ESLint on frontend sources
  27. cd $(FRONTEND) && npm run lint
  28. .PHONY: lint
  29. lint: lint-go lint-fe ## All linters
  30. .PHONY: typecheck
  31. typecheck: ## tsc --noEmit
  32. cd $(FRONTEND) && npm run typecheck
  33. .PHONY: msw-worker-check
  34. msw-worker-check: ## Verify the tracked worker matches the installed MSW runtime
  35. cmp $(FRONTEND)/public/mockServiceWorker.js $(FRONTEND)/node_modules/msw/lib/mockServiceWorker.js
  36. .PHONY: test-go
  37. test-go: dist-stub ## Go tests (shuffle, no cache)
  38. go test -shuffle=on -count=1 $(GO_PKGS)
  39. .PHONY: race
  40. race: dist-stub ## Go tests with the race detector (needs a C compiler)
  41. go test -race -shuffle=on -count=1 $(GO_PKGS)
  42. .PHONY: test-fe
  43. test-fe: ## Frontend tests (vitest)
  44. cd $(FRONTEND) && npm test
  45. .PHONY: test
  46. test: test-go test-fe ## All tests
  47. .PHONY: vulncheck
  48. vulncheck: dist-stub ## govulncheck
  49. go run golang.org/x/vuln/cmd/govulncheck@latest ./...
  50. .PHONY: build-fe
  51. build-fe: ## Build the Vite bundles into internal/web/dist
  52. cd $(FRONTEND) && npm run build
  53. .PHONY: build
  54. build: build-fe ## Build the frontend then the Go binary
  55. go build ./...
  56. .PHONY: build-storybook
  57. build-storybook: ## Build the static Storybook (compile-checks all stories)
  58. cd $(FRONTEND) && npm run build-storybook
  59. # The PR gate. Matches ci.yml: codegen freshness, both linters, typecheck,
  60. # both test suites, a full build, and the Storybook compile-check.
  61. .PHONY: verify
  62. verify: gen-check lint typecheck msw-worker-check test build build-storybook ## Full local gate (mirrors CI)
  63. @echo "verify: OK"