From cd42e55b7b3be68981a626963a798d26b6a3ae9a Mon Sep 17 00:00:00 2001 From: enlineawork Date: Sun, 6 Sep 2026 16:42:32 -0300 Subject: [PATCH] ci: validar backend y web en rama F2.2 --- .github/workflows/f2-2-ci.yml | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/f2-2-ci.yml diff --git a/.github/workflows/f2-2-ci.yml b/.github/workflows/f2-2-ci.yml new file mode 100644 index 0000000..80594a1 --- /dev/null +++ b/.github/workflows/f2-2-ci.yml @@ -0,0 +1,52 @@ +name: F2.2 Integration CI + +on: + push: + branches: + - feature/f2-2-android-v2 + paths: + - 'api-v3/**' + - 'web-v2/**' + - 'scripts/**' + - 'docker-compose.yml' + - '.github/workflows/f2-2-ci.yml' + workflow_dispatch: + +permissions: + contents: read + +jobs: + api: + name: API · typecheck, tests, build + runs-on: ubuntu-latest + defaults: + run: + working-directory: api-v3 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '24' + cache: npm + cache-dependency-path: api-v3/package-lock.json + - run: npm ci + - run: npm run typecheck + - run: npm test + - run: npm run build + + web: + name: WEB · typecheck, build + runs-on: ubuntu-latest + defaults: + run: + working-directory: web-v2 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '24' + cache: npm + cache-dependency-path: web-v2/package-lock.json + - run: npm ci + - run: npm run typecheck + - run: npm run build