From 94a8d5c92f1c802dcbb21b69208cb086029d961c Mon Sep 17 00:00:00 2001 From: enlineawork Date: Tue, 8 Sep 2026 14:51:19 -0300 Subject: [PATCH] ci: mount web and android contracts read-only in preflight --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3f10d2..4a9081c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,6 +72,8 @@ jobs: docker run --rm \ -v "$PWD/api-v3/test:/app/test:ro" \ -v "$PWD/api-v3/tsconfig.test.json:/app/tsconfig.test.json:ro" \ + -v "$PWD/web-v2:/web-v2:ro" \ + -v "$PWD/android-app:/android-app:ro" \ "$image" npm test docker image rm "$image" >/dev/null 2>&1 || true - name: Build production images