chore: remove mobile/ from monorepo, suspend CI mobile job

Mobile app moved to /home/mamostehp/pwap-mobile (local, suspended).
Will be re-integrated when mobile development resumes.

- Removed mobile/ directory entirely
- Removed Mobile App job from quality-gate.yml so CI no longer blocks
This commit is contained in:
2026-04-27 03:06:15 +03:00
parent d3362173df
commit 09da6e80b7
381 changed files with 0 additions and 128135 deletions
-36
View File
@@ -74,42 +74,6 @@ jobs:
name: web-dist
path: web/dist/
# ========================================
# MOBILE APP - LINT & TEST
# ========================================
mobile:
name: Mobile App
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Cache npm dependencies
uses: actions/cache@v4
with:
path: mobile/node_modules
key: ${{ runner.os }}-mobile-${{ hashFiles('mobile/package-lock.json') }}
restore-keys: |
${{ runner.os }}-mobile-
- name: Install dependencies
working-directory: ./mobile
run: npm install --legacy-peer-deps
- name: Run Linter
working-directory: ./mobile
run: npm run lint
- name: Run Tests
working-directory: ./mobile
run: npm run test
# ========================================
# DEPLOY WEB APP TO VPS
# ========================================