You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used yarn kill-port 3000 in CI but then realised it was not finishing the process the way I was expecting. A file that was supposed to be written on SIGINT was not there, so I switched to kill -2 $(lsof -t -i:3000) for now. This is Linux-only, but does the job in my case.
I need to send SIGINT and not SIGKILL, SIGTERM would be good too. On windows I am not sure if there is antyhing like this.
The text was updated successfully, but these errors were encountered: