From 1702e0c408df2909886537e0efaff54f31276c9c Mon Sep 17 00:00:00 2001 From: Arif Hasanic Date: Sat, 30 Aug 2025 23:34:53 +0200 Subject: [PATCH] run multiple lint commands in one sub step --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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]