From 3b9e023736a90f6f64998d5c8ec41795f49d4ad2 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Tue, 13 Jan 2026 09:41:39 +0000 Subject: [PATCH] Remove CI workflow. --- .gitea/workflows/ci.yml | 58 ----------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index c3684c0..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,58 +0,0 @@ -# ABOUTME: Gitea Actions workflow for CI quality gates on pull requests. -# ABOUTME: Runs lint, typecheck, and unit tests before merge is allowed. - -name: CI - -on: - pull_request: - branches: [main] - push: - branches: [main] - -jobs: - quality: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '24' - - - name: Setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 10 - - - name: Get pnpm store directory - shell: bash - run: | - echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - - name: Setup pnpm cache - uses: actions/cache@v4 - with: - path: ${{ env.STORE_PATH }} - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Run linter - run: pnpm lint - - - name: Run typecheck - run: pnpm tsc --noEmit - - - name: Run unit tests - run: pnpm test:run - env: - # Required env vars for tests (dummy values for CI) - NEXT_PUBLIC_POCKETBASE_URL: http://localhost:8090 - RESEND_API_KEY: re_test_key - ENCRYPTION_KEY: 12345678901234567890123456789012 - CRON_SECRET: test_cron_secret