We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8abbacf commit af0735fCopy full SHA for af0735f
.github/workflows/smoke-tests.yml
@@ -14,6 +14,7 @@ jobs:
14
matrix:
15
runner: [ubuntu-latest, macos-latest, windows-latest]
16
node: [20.x, 22.x, 23.x]
17
+ fail-fast: false
18
runs-on: ${{ matrix.runner }}
19
steps:
20
- uses: actions/checkout@v4
packages/cli-repl/src/run.ts
@@ -323,7 +323,7 @@ async function ask(prompt: string): Promise<string> {
323
*/
324
function suppressExperimentalWarnings() {
325
const nodeMajorVersion = process.versions.node.split('.').map(Number)[0];
326
- if (nodeMajorVersion >= 24) {
+ if (nodeMajorVersion >= 23) {
327
const originalEmit = process.emitWarning;
328
process.emitWarning = (warning, ...args: any[]): void => {
329
if (args[0] === 'ExperimentalWarning') {
0 commit comments