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 9686221 commit 1639ad8Copy full SHA for 1639ad8
.github/workflows/ci.yaml
@@ -1,10 +1,22 @@
1
name: ci-node-workflow
2
on:
3
pull_request:
4
+ types: [opened, synchronize, reopened]
5
branches:
6
- develop
7
jobs:
8
sonarcloud:
9
+ name: SonarQube Cloud
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
15
+ - name: SonarQube Cloud Scan
16
+ uses: SonarSource/sonarcloud-github-action@master
17
+ env:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
19
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
20
runs-on: ubuntu-latest
21
steps:
22
- name: Generate coverage
0 commit comments