From a3e460ae572afd257dec943a21bcd0aeac3a2a3e Mon Sep 17 00:00:00 2001 From: liviu Date: Sat, 6 Dec 2025 11:28:18 +0100 Subject: [PATCH] Update .github/workflows/sonar.yml --- .github/workflows/sonar.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index ce3da0e..e5d44fb 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -18,22 +18,12 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Restore npm cache - uses: actions/cache@v3 - with: - key: npm-${{ hashFiles('package-lock.json') }} - path: ~/.npm - name: Setup node environment uses: actions/setup-node@v4 with: node-version: "24" - name: Install dependencies run: npm ci - - name: Save npm cache - uses: actions/cache@v3 - with: - key: npm-${{ hashFiles('package-lock.json') }} - path: ~/.npm - name: Run tests and generate coverage run: npm run coverage # continue-on-error: true