Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
786b1a1
Update pull-request-checker.yml
plnknr Dec 23, 2024
574b2e3
Update application-health-checker.yml
plnknr Dec 23, 2024
32666f3
Update application-health-checker.yml
plnknr Dec 23, 2024
61eee43
Update pull-request-checker.yml
plnknr Dec 23, 2024
f6fea2d
Update application-health-checker.yml
plnknr Dec 23, 2024
1776b95
Update pull-request-checker.yml
plnknr Dec 23, 2024
5b33a1b
Update .github/workflows/application-health-checker.yml
plnknr Dec 24, 2024
a1f1c51
Update .github/workflows/application-health-checker.yml
plnknr Dec 24, 2024
5736086
Update .github/workflows/application-health-checker.yml
plnknr Dec 24, 2024
8e21737
Update .github/workflows/pull-request-checker.yml
plnknr Dec 24, 2024
48a8cd2
Update .github/workflows/pull-request-checker.yml
plnknr Dec 24, 2024
2453684
Update .github/workflows/pull-request-checker.yml
plnknr Dec 24, 2024
1423531
Update pull-request-checker.yml
plnknr Dec 26, 2024
86efe22
Update application-health-checker.yml
plnknr Dec 26, 2024
30ab2e5
Update application-health-checker.yml
plnknr Jan 8, 2025
913b55a
Update pull-request-checker.yml
plnknr Jan 8, 2025
17e4bfa
Update application-health-checker.yml
plnknr Jan 8, 2025
d1b06ec
Update pull-request-checker.yml
plnknr Jan 8, 2025
874a639
Update application-health-checker.yml
plnknr Jan 11, 2025
989a2fe
Update pull-request-checker.yml
plnknr Jan 11, 2025
d6058e4
Merge 'main' into feature/AYS-572/Sonarqube-integration-fe-institutio…
plnknr Jan 11, 2025
75b2a48
Update application-health-checker.yml
plnknr Jan 11, 2025
c17a461
Update pull-request-checker.yml
plnknr Jan 11, 2025
1bf179d
Update application-health-checker.yml
plnknr Jan 16, 2025
6735011
Update pull-request-checker.yml
plnknr Jan 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/application-health-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: sudo apt-get update

- name: Checkout code # Step to check out the code from the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand All @@ -30,13 +30,14 @@ jobs:
- name: Build Project # Build with npm
run: npm run build

- uses: sonarsource/sonarqube-scan-action@v3
- uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner.
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.
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

# If you wish to not fail your job when the Quality Gate is red, comment out the
# following lines.
- uses: sonarsource/sonarqube-quality-gate-action@master # Checks the SonarQube Quality Gate status.
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
17 changes: 9 additions & 8 deletions .github/workflows/pull-request-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: sudo apt-get update

- name: Checkout code # Step to check out the code from the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand All @@ -36,13 +36,14 @@ jobs:
- name: Build Project # Build with npm
run: npm run build

- uses: sonarsource/sonarqube-scan-action@v3
- uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner.
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.
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

# If you wish to not fail your job when the Quality Gate is red, comment out the
# following lines.
- uses: sonarsource/sonarqube-quality-gate-action@master # Checks the SonarQube Quality Gate status.
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Loading