Skip to content

Commit

Permalink
lib: skip flaky modules on v21 (#1035)
Browse files Browse the repository at this point in the history
* lib: skip "q" on Node.js >= 21

Ref: #1033

* lib: skip "yeoman-generator" on Node.js >= 21

Ref: #1033

* lib: skip "ember-cli" on Node.js >= 21

Ref: #1033
  • Loading branch information
RafaelGSS committed Dec 14, 2023
1 parent 67f9816 commit 29c14c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/lookup.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
"ember-cli": {
"envVar": { "YARN_IGNORE_ENGINES": "true" },
"prefix": "v",
"skip": [">=21"],
"flaky": ["win32", "rhel", "sles"],
"head": true,
"expectFail": "fips",
Expand Down Expand Up @@ -403,7 +404,7 @@
"q": {
"prefix": "v",
"maintainers": "kriskowal",
"skip": "win32"
"skip": ["win32", ">=21"]
},
"react": {
"prefix": "v",
Expand Down Expand Up @@ -568,6 +569,7 @@
"yeoman-generator": {
"prefix": "v",
"flaky": ["ppc", "rhel"],
"skip": [">=21"],
"expectFail": "fips",
"maintainers": ["SBoudrias", "sindresorhus"]
},
Expand Down

0 comments on commit 29c14c7

Please sign in to comment.