File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -140,11 +140,26 @@ jobs:
140
140
name : lint-reports
141
141
path : ' **/build/reports/lint-results-*.html'
142
142
143
- - name : Upload lint reports (SARIF)
144
- if : ${{ !cancelled() && hashFiles('**/*.sarif') != '' }}
143
+ - name : Upload lint reports (SARIF) for app module
144
+ if : ${{ !cancelled() && hashFiles('app/ **/*.sarif') != '' }}
145
145
uses : github/codeql-action/upload-sarif@v3
146
146
with :
147
- sarif_file : ' ./'
147
+ sarif_file : ' ./app/'
148
+ category : app
149
+
150
+ - name : Upload lint reports (SARIF) for app-nia-catalog module
151
+ if : ${{ !cancelled() && hashFiles('app-nia-catalog/**/*.sarif') != '' }}
152
+ uses : github/codeql-action/upload-sarif@v3
153
+ with :
154
+ sarif_file : ' ./app-nia-catalog/'
155
+ category : app-nia-catalog
156
+
157
+ - name : Upload lint reports (SARIF) for lint module
158
+ if : ${{ !cancelled() && hashFiles('lint/**/*.sarif') != '' }}
159
+ uses : github/codeql-action/upload-sarif@v3
160
+ with :
161
+ sarif_file : ' ./lint/'
162
+ category : lint
148
163
149
164
- name : Check badging
150
165
run : ./gradlew :app:checkProdReleaseBadging
You can’t perform that action at this time.
0 commit comments