2026-07-29 13:05:14 +02:00
|
|
|
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
|
2026-08-03 15:49:03 +02:00
|
|
|
run: cd frontend && npm ci --legacy-peer-deps
|
2026-07-29 13:05:14 +02:00
|
|
|
- name: Run CI/CD Pipeline
|
|
|
|
|
run: bash scripts/ci_pipeline.sh
|