run multiple lint commands in one sub step

This commit is contained in:
2025-08-30 23:34:53 +02:00
committed by Darius Schefer
parent f87d3da269
commit 1702e0c408

View File

@@ -34,9 +34,10 @@ jobs:
- name: Install Biome - name: Install Biome
run: bun install -g biome run: bun install -g biome
- name: Run Biome lint - name: Run Biome lint
run: biome lint --write run: |
- name: Run Biome format check echo "Running Biome lint..."
run: biome format --write biome lint --write
biome format --write
build-and-push-docker: build-and-push-docker:
needs: [build] needs: [build]