sonar property used for passing the code coverage file. (uses: sonarsource/sonarqube-scan-action@v1.0.0) -Dsonar.javascript.lcov.reportPath=${GITHUB_WORKSPACE}/TestResults/lcov.info
SonarQube Version 9.2.4
How can I confirm that the lcov.info file is used by sonar for code coverage ? (As it shows 0.0% code coverage in dashboard and no verbose logs stating the given report path is used.)
This creates lcov.info file but only covers the js files and code coverage for c# files to be done separately. As this is run using github actions in an ubuntu-latest environment, does it have any issues ?
Am I right in this above understanding ? Using the following for sonar integration, Will this work for .NET ? if not, is there any example file for github actions for sonar on .NET I can refer to ?