Skip to content

Commit

Permalink
Merge branch 'main' into refactor/event-filter-parsing-methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennart01 authored Jan 26, 2025
2 parents 02ba3c2 + 989f4f9 commit 3763060
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/sonarqube.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v4
with:
args: >
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: SonarQube Quality Gate
uses: SonarSource/sonarqube-quality-gate-action@v1
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/inovex/scrumlr.io/issues",
"email": "info@scrumlr.io"
},
"version": "3.10.2",
"version": "3.10.3",
"private": true,
"license": "MIT",
"dependencies": {
Expand Down
15 changes: 15 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sonar.projectKey=scrumlr_scrumlr
sonar.organization=scrumlr

# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=scrumlr
#sonar.projectVersion=1.0


# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.

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

sonar.typescript.tsconfigPath=tsconfig.json

0 comments on commit 3763060

Please sign in to comment.