From 03107841ac684e620fe932b09264a6bc3290c9aa Mon Sep 17 00:00:00 2001 From: Muhammed Emin Akalan Date: Fri, 24 Jul 2026 03:29:13 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20CI=20workflow=20=E2=80=94=20pnpm=20yerin?= =?UTF-8?q?e=20bun=20+=20gerekli=20env=20vars?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yaml | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 4297daa..a0e821a 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -13,26 +13,20 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Setup pnpm - uses: pnpm/action-setup@v4 + - name: Setup Bun + uses: oven-sh/setup-bun@v2 with: - version: 9 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: pnpm + bun-version: latest - name: Install dependencies - run: pnpm install --frozen-lockfile + run: bun install --frozen-lockfile - name: Lint - run: pnpm lint + run: bun run lint - name: Build - run: pnpm build + run: bun run build env: - # Placeholder değerler — build sırasında env okuyan kod varsa çökmemesi için. - # Gerçek değerleri Gitea > Settings > Actions > Secrets üzerinden secrets olarak ekleyin. NEXT_TELEMETRY_DISABLED: "1" + BETTER_AUTH_SECRET: "ci-placeholder" + APP_DB_URL: "file:./data/app.db"