Skip to content

Commit

Permalink
Merge pull request #4 from NadicaUzunova/main
Browse files Browse the repository at this point in the history
Added SonarCloud jobs to pipeline
  • Loading branch information
CetinaLuka committed Jan 22, 2024
2 parents 4e0302f + 5c8fd1a commit 5e6b24c
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,63 @@ jobs:
sleep 5
done
echo "React server is up and running!"
sonar_frontend:
name: SonarCloud Frontend
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

- name: Install dependencies
run: npm ci
working-directory: frontend

- name: SonarCloud Scan Frontend
uses: SonarSource/sonarcloud-github-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_FE }}
with:
args: '-Dsonar.projectKey=ii-zimskasola2024_measurments-frontend'

sonar_backend:
name: SonarCloud Backend
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '20'
cache: maven

- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('backend/**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2

- name: Build and analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_BE }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=ii-zimskasola2024_measurments -f backend/pom.xml -DskipTests
2 changes: 2 additions & 0 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
<quarkus.platform.version>3.6.3</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.1.2</surefire-plugin.version>
<sonar.organization>ii-zimskasola2024</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<dependencyManagement>
<dependencies>
Expand Down
13 changes: 13 additions & 0 deletions frontend/sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sonar.projectKey=ii-zimskasola2024_measurments-frontend
sonar.organization=ii-zimskasola2024

# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=measurments_frontend
#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
16 changes: 16 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sonar.projectKey=ii-zimskasola2024_measurments-frontend
sonar.organization=ii-zimskasola2024

sonar.exclusions=**/backend/**


# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=measurments_frontend
#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

0 comments on commit 5e6b24c

Please sign in to comment.