Big visual overhaul docker compsoe file etc
Some checks failed
CI / test-and-quality (push) Failing after 4m4s

This commit is contained in:
Asger Geel Weirsøe
2026-03-23 14:11:30 +01:00
parent d86941fef8
commit a81bc1250c
92 changed files with 11584 additions and 1686 deletions

View File

@@ -27,21 +27,34 @@ jobs:
pip install ruff
- name: Lint
run: ruff check lobby
run: ruff check .
- name: Tests
run: python manage.py test lobby -v 1
- name: Django checks
run: |
python manage.py check
python scripts/check_i18n_drift.py
python manage.py test lobby fupogfakta -v 1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install shared frontend dependencies
run: npm ci --prefix frontend
- name: Shared frontend checks
run: |
npm --prefix frontend test
npm --prefix frontend run build
- name: Install SPA dependencies
run: |
npm ci --prefix frontend/angular
node -e "require('./frontend/angular/node_modules/rollup/dist/native.js')" \
|| npm install --prefix frontend/angular
- name: SPA Angular smoke tests
run: npm --prefix frontend/angular test
- name: SPA Angular checks
run: |
npm --prefix frontend/angular test
npm --prefix frontend/angular run build