Add test automation script scaffolds

This commit is contained in:
Codex
2026-07-02 13:26:19 +09:00
parent 0a427da636
commit fd9e3ae1a6
14 changed files with 625 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
IMAGE="${FLUTTER_DOCKER_IMAGE:-ghcr.io/cirruslabs/flutter:stable}"
docker run --rm \
-u 0:0 \
-v "$ROOT_DIR:/workspace" \
-w /workspace/app \
"$IMAGE" \
sh -lc "flutter pub get && dart format lib test && chown -R 1000:1000 /workspace/app"