We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e081a commit 0f0f38bCopy full SHA for 0f0f38b
.github/workflows/sonar.yml
@@ -0,0 +1,19 @@
1
+name: sonar
2
+
3
+on:
4
+ push:
5
6
7
+jobs:
8
+ scan:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
14
+ - uses: sonarsource/sonarqube-scan-action@v6
15
+ with:
16
+ projectBaseDir: ${{ github.workspace }}
17
+ env:
18
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
19
+ SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
sonar-project.properties
@@ -0,0 +1,4 @@
+sonar.projectKey=com.shell.peter-evans-create-pull-request-v7
+sonar.javascript.lcov.reportPaths=coverage/lcov.info
+sonar.sources=src
0 commit comments