We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e950349 commit 6b39d19Copy full SHA for 6b39d19
.github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: ci
+name: CI
2
3
on:
4
push:
service/utils.ts
@@ -21,8 +21,15 @@ export const runVlmcs = ({
21
content: stdout.trim(),
22
status: err ? false : true,
23
})
24
- vlmcs.kill()
25
},
26
)
+
27
+ vlmcs.on('error', () => {
28
+ vlmcs.kill()
29
+ })
30
31
+ vlmcs.on('close', () => {
32
33
34
35
}
0 commit comments