From f24080448101d7045f1154476541c27ce6cc062f Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Mon, 8 Dec 2025 12:02:13 +0100 Subject: [PATCH] Changed order --- .github/workflows/sonar.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 1674600..0f2cafb 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -15,14 +15,14 @@ jobs: name: SonarQube runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Setup node environment uses: actions/setup-node@v4 with: node-version: "24" + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Install dependencies run: npm ci - name: Run tests and generate coverage