Skip to content

Commit

Permalink
chore: invoke SonarQube via GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
kaufmo committed Dec 19, 2024
1 parent 7b18549 commit 1ef95a1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/sonar-qube.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: SonarCloud Code Analysis

on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
- next

jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: "yarn" # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies

- run: yarn install

- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
8 changes: 8 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sonar.projectKey=vivid-planet_dev-process-manager
sonar.organization=vivid-planet
sonar.sources=src/
sonar.tests=src/
sonar.test.inclusions=src/**/__tests__/**,src/**/*.spec.ts
sonar.exclusions=src/**/__tests__/**,src/**/*.spec.ts
sonar.cpd.exclusions=src/**/__tests__/**,src/**/*.spec.ts
sonar.typescript.tsconfigPaths=tsconfig.json

0 comments on commit 1ef95a1

Please sign in to comment.