Skip to content

Commit af0735f

Browse files
committed
Don't fail-fast
1 parent 8abbacf commit af0735f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
matrix:
1515
runner: [ubuntu-latest, macos-latest, windows-latest]
1616
node: [20.x, 22.x, 23.x]
17+
fail-fast: false
1718
runs-on: ${{ matrix.runner }}
1819
steps:
1920
- uses: actions/checkout@v4

packages/cli-repl/src/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ async function ask(prompt: string): Promise<string> {
323323
*/
324324
function suppressExperimentalWarnings() {
325325
const nodeMajorVersion = process.versions.node.split('.').map(Number)[0];
326-
if (nodeMajorVersion >= 24) {
326+
if (nodeMajorVersion >= 23) {
327327
const originalEmit = process.emitWarning;
328328
process.emitWarning = (warning, ...args: any[]): void => {
329329
if (args[0] === 'ExperimentalWarning') {

0 commit comments

Comments
 (0)