We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbe468 commit a78ef0aCopy full SHA for a78ef0a
1 file changed
.github/workflows/ci.yml
@@ -50,8 +50,9 @@ jobs:
50
run: npm test
51
working-directory: ./app
52
53
- - name: Terminate leftover processes
+ - name: Force terminate leftover processes
54
if: always()
55
run: |
56
- # Use killall to terminate any Node.js processes that might be running
57
- killall node || true
+ # Use pkill with SIGKILL to forcefully terminate any Node.js processes
+ # The -9 flag corresponds to the SIGKILL signal
58
+ pkill -9 -f node || true
0 commit comments