f4364f30e0
8.1 Merge-CI: - Backend Tests und Frontend Tests zu ci_pipeline.sh hinzugefuegt - Migration Hash Check (<=0092) mit check_migration_hashes.py - npm ci --legacy-peer-deps in Forgejo Workflow und ci_pipeline.sh - 93 Migration-Hashes generiert und verifiziert 8.2 Migrations-Release-Gate: - migration_release_gate.sh: Fresh Install, Schema Snapshot, RLS/Grants Check, Cross-Tenant Test, Data Integrity - Prueft leere DB Installation mit Alembic Head + Plugin-Migrationen - Verifiziert RLS >= 100 Tabellen, 4 DB-Rollen, kein BYPASSRLS auf crm_api - Cross-Tenant: 0 rows ohne/fake tenant context
26 lines
594 B
YAML
26 lines
594 B
YAML
name: CI/CD Pipeline
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
quality-gate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
- name: Install Python deps
|
|
run: pip install -r requirements.txt
|
|
- name: Install Frontend deps
|
|
run: cd frontend && npm ci --legacy-peer-deps
|
|
- name: Run CI/CD Pipeline
|
|
run: bash scripts/ci_pipeline.sh
|