willfire 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/predict.js +4 -1
- package/package.json +1 -1
package/dist/predict.js
CHANGED
|
@@ -171,7 +171,10 @@ function expandMatrixDetailed(strategy) {
|
|
|
171
171
|
}
|
|
172
172
|
}
|
|
173
173
|
combos.push(...extra);
|
|
174
|
-
|
|
174
|
+
// Zero combinations is a real answer, not a missing one: an empty axis, or an
|
|
175
|
+
// `exclude` that removes everything, schedules no jobs at all. Only an absent
|
|
176
|
+
// `matrix:` key means "one unsuffixed job", and that returned above.
|
|
177
|
+
return combos;
|
|
175
178
|
}
|
|
176
179
|
/** Return list of matrix combination dicts, or null if dynamic. */
|
|
177
180
|
export function expandMatrix(strategy) {
|