Skip to content

Commit

Permalink
Implement SonarCloud Analysis Workflow in GitHub Actions (#73)
Browse files Browse the repository at this point in the history
* added sonarcloud workflow

* changed token name
  • Loading branch information
Matte22 authored Jan 11, 2024
1 parent 1d9e827 commit 6c5b1a4
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Run SonarCloud Analysis
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- "lib/**"
- "index.js"
- ".github/workflows/sonarcloud.yml"

push:
branches:
- main
paths:
- "lib/**"
- "index.js"
- ".github/workflows/sonarcloud.yml"

permissions:
pull-requests: read # allows SonarCloud to decorate PRs with analysis results

jobs:
SonarCloudAnalysis-Watcher:
name: SonarCloud Analysis Watcher
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # Important to fetch all history for accurate blame information
- name: Analyze Watcher with SonarCloud
uses: SonarSource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_WATCHER }} # Needed to push to SonarCloud
with:
# Additional arguments for the sonarcloud scanner
args: -Dsonar.projectKey=NUWCDIVNPT_stigman-watcher
-Dsonar.projectName=NUWCDIVNPT_stigman-watcher
-Dsonar.organization=nuwcdivnpt
-Dsonar.inclusions=**/*.js
-Dsonar.exclusions=**/node_modules/**,


# This will fail the action if Quality Gate fails (leaving out for now )
# - name: Check Quality Gate
# uses: sonarsource/sonarqube-quality-gate-action@master
# env:
# SONAR_TOKEN:

0 comments on commit 6c5b1a4

Please sign in to comment.