diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9c254fbb..910c9121 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: node_version: - - 24 # end of life 2028-04-30 # used in SonarCloud scan + - 24 # end of life 2028-04-30 name: build-lint-test - node ${{ matrix.node_version }} steps: - name: Check out Git repository @@ -42,15 +42,6 @@ jobs: - name: Verify coverage file ready run: find . | grep coverage - - name: SonarCloud Scan - uses: SonarSource/sonarqube-scan-action@v7 - with: - args: > - "-Dsonar.projectVersion=${{ github.run_id }}" - env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_CLOUD_TOKEN }} - LC_ALL: 'C.UTF-8' functional: runs-on: ubuntu-latest diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index 69c84aae..00000000 --- a/sonar-project.properties +++ /dev/null @@ -1,12 +0,0 @@ -sonar.projectKey=Typeform_embed -sonar.organization=typeform -sonar.projectVersion=dev - -sonar.sources=packages - -sonar.inclusions=packages/*/src/**/*.ts,src/**/*.js -sonar.exclusions=node_modules/**,dist/**,**/*.spec.ts,**/*.test.ts - -sonar.test.exclusions=node_modules/**,dist/** - -sonar.javascript.lcov.reportPaths=packages/**/coverage/lcov.info