From 99d4f6dd2245b8be7eb3907449d92bcf3b89ec20 Mon Sep 17 00:00:00 2001 From: Winz Date: Tue, 5 May 2026 22:40:53 +0200 Subject: [PATCH] fix ci --- .gitea/workflows/ci.yaml | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 7df8683..10010d1 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -13,7 +13,6 @@ jobs: env: NEXT_TELEMETRY_DISABLED: 1 - NODE_ENV: production steps: - name: Checkout @@ -43,30 +42,7 @@ jobs: run: | cd /opt/RFP_Finanzen rm -rf node_modules .next - npm ci - - - name: Debug before build - if: gitea.event_name == 'push' - run: | - cd /opt/RFP_Finanzen - echo "PWD:" - pwd - - echo "src/lib:" - ls -la src/lib || true - - echo "tsconfig:" - cat tsconfig.json || true - - echo "next config:" - cat next.config.mjs || true - - echo "Check files:" - test -f src/lib/audit-log.ts && echo "audit-log OK" || echo "audit-log FEHLT" - test -f src/lib/domain.ts && echo "domain OK" || echo "domain FEHLT" - test -f src/lib/prisma.ts && echo "prisma OK" || echo "prisma FEHLT" - test -f src/lib/session.ts && echo "session OK" || echo "session FEHLT" - test -f src/lib/auth.ts && echo "auth OK" || echo "auth FEHLT" + npm install - name: Build app if: gitea.event_name == 'push'