Skip to content

[#188] Prepare Nix shell configuration for frontend and backend #276

[#188] Prepare Nix shell configuration for frontend and backend

[#188] Prepare Nix shell configuration for frontend and backend #276

name: SonarQube Static Analysis
on:
push:
paths:
- govtool/frontend/**
- .github/workflows/frontend_sonar_scan.yml
jobs:
execute_sonar_scanner:
name: Execute sonar-scanner on govtool frontend
runs-on: ubuntu-latest
permissions: read-all
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
with:
projectBaseDir: govtool/frontend
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# Fail the build if it doesn't meet quality gate
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}