From c5a12aede32db06f658df51771a06f001b26ffc4 Mon Sep 17 00:00:00 2001 From: nocci Date: Thu, 8 Jan 2026 15:56:42 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style(ci):=20adjust=20indentatio?= =?UTF-8?q?n=20in=20build=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix indentation for sonar job to align with yaml format standards --- .forgejo/workflows/build.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 98e6eb6..60e07b7 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -30,19 +30,19 @@ jobs: - name: Run ESLint run: npm run lint - sonar: - needs: lint - runs-on: self-hosted - container: - image: node:20-alpine - steps: - - name: Manual Git Checkout and Prepare - run: | - apk add --no-cache git curl bash - git init - git remote add origin ${{ env.REPO_URL }}/${{ github.repository }}.git - git fetch --depth 1 origin ${{ github.ref }} - git checkout FETCH_HEAD + sonar: + needs: lint + runs-on: self-hosted + container: + image: node:20-alpine + steps: + - name: Manual Git Checkout and Prepare + run: | + apk add --no-cache git curl bash + git init + git remote add origin ${{ env.REPO_URL }}/${{ github.repository }}.git + git fetch --depth 1 origin ${{ github.ref }} + git checkout FETCH_HEAD - name: Install Node.js and Sonar Scanner run: |