-
Notifications
You must be signed in to change notification settings - Fork 45
98 lines (98 loc) · 2.82 KB
/
sonar.yml
File metadata and controls
98 lines (98 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: SonarCloud Scan
on:
push:
branches:
- main
paths:
- "server/**"
- "frontend/**"
- "screenshot/**"
workflow_dispatch: # add ability to run workflow.
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarQubeServer:
name: SonarQube Server
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: "temurin"
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Scan server
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # analysis token associated to your project
SONAR_HOST_URL: ${{ secrets.SONAR_HOST }}
run: |
cd server/
./gradlew build sonar
sonarQubeFrontend:
name: sonarQube Frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
run_install: true
- name: Run coverage
run: |
cd frontend
pnpm run coverage
- name: Scan Frontend
uses: SonarSource/sonarqube-scan-action@v6.0.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST }}
SONAR_PROJECT_NAME: findfirst_frontend
with:
projectBaseDir: frontend/
sonarQubeScreenshot:
name: SonarQube Screenshot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: "temurin"
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Scan screenshot
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # analysis token associated to your project
SONAR_HOST_URL: ${{ secrets.SONAR_HOST }}
run: |
cd screenshot/
./gradlew build sonar