We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797aa2e commit 6f7964dCopy full SHA for 6f7964d
1 file changed
.github/workflows/frontend-pr-workflow.yml
@@ -396,10 +396,11 @@ jobs:
396
- name: Print GitHub SHA
397
run: echo "The commit SHA is ${{ github.sha }}"
398
399
- # Job 5: SonarCloud Analysis (runs immediately, parallel with build and tests)
+ # Job 5: SonarCloud Analysis (waits for unit tests if enabled, otherwise runs immediately)
400
sonarcloud:
401
name: 🔍 SonarCloud
402
if: inputs.run-sonarcloud
403
+ needs: [build, unit-tests]
404
permissions:
405
contents: read
406
uses: Typeform/.github/.github/workflows/sonarcloud-scan.yml@v1
0 commit comments