Merge pull request #69 from jaydenchee97/feature #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SonarCloud Static Code Analysis | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
sonarcloud: | |
name: SonarCloud Scan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@v2 | |
with: | |
args: > | |
-Dsonar.projectKey=jaydenchee97_unirent | |
-Dsonar.organization=jaydenchee97 | |
-Dsonar.sources=./src | |
-Dsonar.branch.name=${{ github.ref_name }} | |
-Dsonar.tests= | |
-Dsonar.report.export.path=sonar-report.json | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |