Skip to content

Commit

Permalink
Skip lts_4_4
Browse files Browse the repository at this point in the history
  • Loading branch information
simonihmig committed Dec 10, 2024
1 parent cf647ee commit 6727e38
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions tests/scenarios/scenarios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 6727e38

Please sign in to comment.