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 ff2d932 commit b84e527Copy full SHA for b84e527
.github/workflows/cli_tests.yml
@@ -36,3 +36,6 @@ jobs:
36
37
- name: Run tests
38
run: npm test
39
+ env:
40
+ NPM_CONFIG_YES: true
41
+ CI: true
cli/src/index.ts
@@ -287,6 +287,8 @@ async function main(): Promise<void> {
287
try {
288
const args = parseArgs();
289
await callMethod(args);
290
+ // Explicitly exit to ensure process terminates in CI
291
+ process.exit(0);
292
} catch (error) {
293
handleError(error);
294
}
0 commit comments