From aeaaaf1cacfb7ac0f58f36bc0116ee574392f28c Mon Sep 17 00:00:00 2001 From: Zwifi Date: Wed, 25 Sep 2024 11:22:09 +0200 Subject: [PATCH] Remove SonarQube from CI (#73) We will replace it with SonarCloud, which we use for open source repositories. --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f75dab..657d8eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,20 +25,3 @@ jobs: cache: npm - run: npm ci - run: npm run test:snapshot - - sonarqube: - name: run sonarqube - if: ${{ github.actor != 'dependabot[bot]' }} - needs: [unit-test] - runs-on: ubuntu-latest - steps: - - name: Checking out - uses: actions/checkout@v4 - with: - # Disabling shallow clone is recommended for improving relevancy of reporting - fetch-depth: 0 - - name: SonarQube Scan - uses: kitabisa/sonarqube-action@v1.2.1 - with: - host: ${{ secrets.SONARQUBE_HOST }} - login: ${{ secrets.SONARQUBE_DEV_INRUPT_COM_GITHUB_TOKEN }}