We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
analysisKinds
1 parent d52917b commit 57c7bc6Copy full SHA for 57c7bc6
1 file changed
pr-checks/sync.ts
@@ -189,6 +189,19 @@ function main(): void {
189
useAllPlatformBundle = checkSpecification.useAllPlatformBundle;
190
}
191
192
+ if (checkSpecification.analysisKinds) {
193
+ const newMatrix: Array<Record<string, any>> = [];
194
+ for (const matrixInclude of matrix) {
195
+ for (const analysisKind of checkSpecification.analysisKinds) {
196
+ newMatrix.push({
197
+ ...matrixInclude,
198
+ "analysis-kinds": analysisKind,
199
+ });
200
+ }
201
202
+ matrix = newMatrix;
203
204
+
205
// Construct the workflow steps needed for this check.
206
const steps: any[] = [
207
{
0 commit comments