Skip to content

Commit

Permalink
Integrate sonarqube. (#1201)
Browse files Browse the repository at this point in the history
  • Loading branch information
shammowla authored Oct 18, 2024
1 parent f2bc443 commit 279f911
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 19 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# If you wish to fail your job when the Quality Gate is red, uncomment the
# following lines. This would typically be used to fail a deployment.
# We do not recommend to use this in a pull request. Prefer using pull request
# decoration instead.
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
20 changes: 1 addition & 19 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,19 +1 @@
#----- Default SonarQube server
sonar.host.url=https://sonarcloud.io
# must be unique in a given SonarQube instance
sonar.projectKey=adobe_alloy
sonar.organization=adobeinc
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=alloy
sonar.projectVersion=1.0


# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=src

#excluding a borrowed code
sonar.exclusions=src/utils/crc32.js

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
sonar.projectKey=Alloy

0 comments on commit 279f911

Please sign in to comment.