File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
29
29
- id : extra_args
30
30
run : |
31
- coverage=$(find coverage -type f -name '*lcov.info' -printf "%p," )
31
+ coverage=$(find coverage -type f -name '*lcov.info' | tr '\n' ',' )
32
32
echo "reportPaths=$coverage" >> $GITHUB_OUTPUT
33
- testResults=$(find coverage -type f -name '*test-report.xml' -printf "%p," )
33
+ testResults=$(find coverage -type f -name '*test-report.xml' | tr '\n' ',' )
34
34
echo "testExecutionReportPaths=$testResults" >> $GITHUB_OUTPUT
35
35
36
36
sonarqube :
41
41
SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
42
42
with :
43
43
extra_args : |
44
- -Dsonar .javascript.lcov.reportPaths=${{ needs.prepare.outputs.reportPaths }}
45
- -Dsonar .testExecutionReportPaths=${{ needs.prepare.outputs.testExecutionReportPaths }}
44
+ -D"sonar .javascript.lcov.reportPaths=${{ needs.prepare.outputs.reportPaths }}"
45
+ -D"sonar .testExecutionReportPaths=${{ needs.prepare.outputs.testExecutionReportPaths }}"
You can’t perform that action at this time.
0 commit comments