From 3a60ae8fd4c8432ea970e0f325a13de3c1586df1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 14 Feb 2026 20:41:36 +0900 Subject: ci: add GitHub Actions CI workflow with just Add CI workflow running build/lint checks for all components: - backend: Go build + golangci-lint - worker/swift: Go build + golangci-lint - frontend: Biome + TypeScript + ESLint - worker/php: Biome Add `ci` recipes to each justfile so GHA uses `just ci` uniformly. Co-Authored-By: Claude Opus 4.6 --- frontend/justfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 frontend/justfile (limited to 'frontend') diff --git a/frontend/justfile b/frontend/justfile new file mode 100644 index 0000000..beba8b3 --- /dev/null +++ b/frontend/justfile @@ -0,0 +1,7 @@ +check: + npm run check + +ci: + npx biome ci . + npx tsc --noEmit + npx eslint . -- cgit v1.3.1