diff --git a/tests/scenarios/scenarios.ts b/tests/scenarios/scenarios.ts index b9a8ce2eb..84d3d81cd 100644 --- a/tests/scenarios/scenarios.ts +++ b/tests/scenarios/scenarios.ts @@ -80,12 +80,17 @@ async function canary(project: Project) { } export function supportMatrix(scenarios: Scenarios) { - return scenarios.expand({ - lts_3_28, - lts_4_4, - lts_5_12, - release, - }); + return ( + scenarios + .expand({ + lts_3_28, + lts_4_4, + lts_5_12, + release, + }) + // exceeding GitHub actions limit of 256 + .skip('lts_4_4') + ); } export function fullSupportMatrix(scenarios: Scenarios) {