From c7382e085a97f5945a30129eaca886016439faa2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 26 Oct 2022 10:28:12 +0200 Subject: [PATCH] Initial web ui integration in sonar MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 12 ++++++------ ui/web/sonar-project.properties | 15 +++++++++++++++ 2 files changed, 21 insertions(+), 6 deletions(-) create mode 100644 ui/web/sonar-project.properties diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c2f0f15..536fdf4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,12 +64,12 @@ jobs: # - name: npm run coverage # if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'" # run: npm run coverage - # - name: SonarCloud Scan - # if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'" - # uses: sonarsource/sonarcloud-github-action@master - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + - name: SonarCloud Scan + if: "github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'" + uses: sonarsource/sonarcloud-github-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} build-docker: runs-on: ubuntu-latest steps: diff --git a/ui/web/sonar-project.properties b/ui/web/sonar-project.properties new file mode 100644 index 00000000..395315d5 --- /dev/null +++ b/ui/web/sonar-project.properties @@ -0,0 +1,15 @@ +sonar.projectKey=SAP_e-mobility-charging-stations-simulator +sonar.organization=sap-1 + +# This is the name and version displayed in the SonarCloud UI. +sonar.projectName=e-mobility-charging-stations-simulator-web-ui +sonar.projectVersion=0.1.1 + +# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. +sonar.sources=src +sonar.tests=tests + +# sonar.javascript.lcov.reportPaths=coverage/lcov.info + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8 -- 2.34.1