docs: update CLAUDE.md to reflect passing CI pipeline

- ESLint: document flat config with 0 errors
- Typecheck: document 4GB heap for 55+ collections
- Deploy: add post-deployment verification step
- Update timestamp

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Martin Porwoll 2026-02-13 22:39:08 +00:00
parent d896b72c18
commit cc4eb930ae

View file

@ -1226,16 +1226,16 @@ Läuft bei Push/PR auf `main` und `develop`:
| Job | Beschreibung | | Job | Beschreibung |
|-----|--------------| |-----|--------------|
| **lint** | ESLint + Prettier Check | | **lint** | ESLint (flat config, 0 errors) |
| **typecheck** | TypeScript Compiler (`tsc --noEmit`) | | **typecheck** | TypeScript Compiler (`tsc --noEmit`, 4GB heap) |
| **test** | Unit & Integration Tests (Vitest) | | **test** | Unit & Integration Tests (Vitest) |
| **build** | Next.js Production Build | | **build** | Next.js Production Build |
| **e2e** | Playwright E2E Tests | | **e2e** | Playwright E2E Tests |
**Lokale Ausführung:** **Lokale Ausführung:**
```bash ```bash
pnpm lint # ESLint pnpm lint # ESLint (0 errors, warnings only)
pnpm typecheck # TypeScript Check pnpm typecheck # TypeScript Check (4GB heap for 55+ collections)
pnpm format:check # Prettier Check pnpm format:check # Prettier Check
pnpm format # Prettier Auto-Fix pnpm format # Prettier Auto-Fix
pnpm test # Alle Tests pnpm test # Alle Tests
@ -1287,9 +1287,10 @@ Manuelles Deployment auf Production-Server (Hetzner 3) bei workflow_dispatch:
| Feature | Beschreibung | | Feature | Beschreibung |
|---------|--------------| |---------|--------------|
| Pre-flight Checks | Überprüft Branch-Status und Migrationen | | Pre-flight Checks | Überprüft Branch-Status und Migrationen |
| Pre-deployment Tests | Optional, Lint + Unit Tests | | Pre-deployment Tests | Optional: ESLint, Unit Tests, Build |
| Database Backup | Automatisches Backup vor Deployment | | Database Backup | Automatisches Backup vor Deployment |
| Health Check | Verifiziert erfolgreiche Deployment | | Health Check | Admin Panel (200) + API (< 500) |
| Post-deployment Verification | Admin + API Health Check |
| Auto-Rollback | Bei fehlgeschlagenem Health Check | | Auto-Rollback | Bei fehlgeschlagenem Health Check |
**Manuelles Production-Deployment:** **Manuelles Production-Deployment:**
@ -1332,4 +1333,4 @@ ssh payload@162.55.85.18
### Scripts & Backup ### Scripts & Backup
- `scripts/backup/README.md` - Backup-System Dokumentation - `scripts/backup/README.md` - Backup-System Dokumentation
*Letzte Aktualisierung: 13.02.2026 (Versionen aktualisiert: Payload 3.76.1, Next.js 16.2.0-canary.41)* *Letzte Aktualisierung: 13.02.2026 (CI Pipeline: ESLint + Typecheck grün, Payload 3.76.1, Next.js 16.2.0-canary.41)*