dev #1

Merged
nocci merged 51 commits from dev into main 2026-03-06 16:31:29 +01:00
Showing only changes of commit d1d6ba58b7 - Show all commits

View file

@ -33,16 +33,21 @@ jobs:
sonar: sonar:
needs: lint needs: lint
runs-on: self-hosted runs-on: self-hosted
container:
image: node:20-alpine
steps: steps:
- name: Manual Git Checkout - name: Manual Git Checkout and Prepare
run: | run: |
apt-get update apk add --no-cache git curl bash
apt-get install -y git
git init git init
git remote add origin ${{ env.REPO_URL }}/${{ github.repository }}.git git remote add origin ${{ env.REPO_URL }}/${{ github.repository }}.git
git fetch --depth 1 origin ${{ github.ref }} git fetch --depth 1 origin ${{ github.ref }}
git checkout FETCH_HEAD git checkout FETCH_HEAD
- name: Install Node.js and Sonar Scanner
run: |
npm install -g sonarqube-scanner
- name: Install Node.js - name: Install Node.js
run: | run: |
apt-get update apt-get update