From de9cd378bd1d156c1b6a30f9db0995f291cdd95d Mon Sep 17 00:00:00 2001 From: Tobias Klemp Date: Sat, 6 Dec 2025 15:59:37 +0100 Subject: [PATCH] test --- .gitea/workflows/ci.yml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7235302..abce223 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,28 +10,26 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - name: Setup Bun - uses: oven-sh/setup-bun@v1 - with: - bun-version: latest - - - name: Checkout code + - name: Checkout repo uses: actions/checkout@v4 - - name: Install Dependencies - run: bun install --frozen-lockfile + - name: Install bun + uses: oven-sh/setup-bun@v2 - - name: Build application + - name: Install dependencies + run: bun ci + + - name: Build app run: bun --bun run build - name: Run type checking - run: bun run check + run: bun --bun run check - name: Run linting - run: bun run lint:check + run: bun --bun run lint:check - name: Check formatting - run: bun run format:check + run: bun --bun run format:check # type-check: # runs-on: ubuntu-latest