diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-14 20:41:36 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-14 20:41:36 +0900 |
| commit | 3a60ae8fd4c8432ea970e0f325a13de3c1586df1 (patch) | |
| tree | 98009efd8d0bdaab624a7c90c85290f36ca2cc64 /worker | |
| parent | 9185367fcd7d95af89fac36dd892d8b064dbd94f (diff) | |
| download | phperkaigi-2026-albatross-3a60ae8fd4c8432ea970e0f325a13de3c1586df1.tar.gz phperkaigi-2026-albatross-3a60ae8fd4c8432ea970e0f325a13de3c1586df1.tar.zst phperkaigi-2026-albatross-3a60ae8fd4c8432ea970e0f325a13de3c1586df1.zip | |
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 <noreply@anthropic.com>
Diffstat (limited to 'worker')
| -rw-r--r-- | worker/php/justfile | 5 | ||||
| -rw-r--r-- | worker/swift/justfile | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/worker/php/justfile b/worker/php/justfile new file mode 100644 index 0000000..115165d --- /dev/null +++ b/worker/php/justfile @@ -0,0 +1,5 @@ +check: + npm run check + +ci: + npx biome ci . diff --git a/worker/swift/justfile b/worker/swift/justfile index 33cf92c..b203597 100644 --- a/worker/swift/justfile +++ b/worker/swift/justfile @@ -1,3 +1,5 @@ check: go build -o /dev/null ./... go tool golangci-lint run + +ci: check |
