Initial web ui integration in sonar
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 26 Oct 2022 08:28:12 +0000 (10:28 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 26 Oct 2022 08:28:12 +0000 (10:28 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.github/workflows/ci.yml
ui/web/sonar-project.properties [new file with mode: 0644]

index 5c2f0f157d9705f4e26837a65bbbc659825aefa1..536fdf4f58822c397b74a01d1c87e5561590c6be 100644 (file)
@@ -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 (file)
index 0000000..395315d
--- /dev/null
@@ -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