Template for a good new topic, formatted with Markdown:
- ALM used: GitHub
- CI system used: GitHub Actions
- Scanner command used when applicable:
sonarsource/sonarcloud-github-action@master
- Languages of the repository: JavaScript, TypeScript, React
I have a config file for sonarcloud .sonarcloud.properties
however the action I’m using in GitHub requires it to be .sonar-project.properties
, is there any way around this? It’s very unintuitive to have two config files.
GitHub Action configuration
sonarcloud:
name: SonarCloud Scan
runs-on: ubuntu-latest
needs: [unit-tests]
steps:
- name: Checkout source code
uses: actions/checkout@v2
with:
ref: ${{ github.sha }}
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}