diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26b1d42..d6ee6a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,14 +31,12 @@ jobs: image: oven/bun steps: - uses: actions/checkout@v4 - - name: Install Biome - run: bun install -g biome - - name: Run Biome lint - run: | - echo "Running Biome lint..." - bun install - bunx biome lint --write - bunx biome format --write + - name: Setup Biome + uses: biomejs/setup-biome@v2 + with: + version: latest + - name: Run Biome + run: biome ci . build-and-push-docker: needs: [build]