run multiple lint commands in one sub step
All checks were successful
CI / build (push) Successful in 12s
CI / lint (push) Successful in 7s
CI / build-and-push-docker (push) Successful in 17s

This commit is contained in:
2025-08-30 23:34:53 +02:00
parent 55d86dbcaf
commit b0471a3a2f

View File

@@ -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]