diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85c6390..85fba6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,9 +34,10 @@ jobs: - name: Install Biome run: bun install -g biome - name: Run Biome lint - run: biome lint --write - - name: Run Biome format check - run: biome format --write + run: | + echo "Running Biome lint..." + biome lint --write + biome format --write build-and-push-docker: needs: [build]