From b03e3dd0d8779dc56cf0b65ba675704738e15661 Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Mon, 8 Dec 2025 15:39:54 +0100 Subject: [PATCH] Added node --- .github/workflows/sonar.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 8b97d49..fa245af 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -54,11 +54,15 @@ jobs: runs-on: docker steps: - name: Setup Node environment - uses: actions/setup-node@v4 - with: - node-version: "24" - - name: Download build artifacts - uses: actions/download-artifact@v3 - with: - name: output - path: ./output + run: | + apt-get update -y + apt-get install -y curl ca-certificates + curl -fsSL https://deb.nodesource.com/setup_24.x | bash - + apt-get install -y nodejs + node --version + npm --version + # - name: Download build artifacts + # uses: actions/download-artifact@v3 + # with: + # name: output + # path: ./output