-
When starting a pty like so:
and then later doing The problem appears on nodejs 20.18.1 on a windows-2019 github action runner. Locally, it seems to always work. |
Beta Was this translation helpful? Give feedback.
Answered by
Tyriar
Jan 6, 2025
Replies: 1 comment 1 reply
-
Updating the runner image to 2022 fixes the problem. I guess the old image is using winPty. Windows build number is 17763, I believe. (https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
17763 is really old. Yes this means you're stuck on winpty which is legacy and we're not touching it anymore. I recommend updating Windows, but you should be able to use
useConptyDll
in the latest beta builds to get on the newer backend which should be vastly better than winpty (despite being experimental).node-pty/typings/node-pty.d.ts
Lines 98 to 104 in d32b574