Open mlitvinav opened 10 months ago
Swap out the install action to the install script. See the lastest docs to see how to pin specific versions, if desired:
- name: Setup Bun run: | curl -fsSL https://bun.sh/install | bash
this workaround doesn't seem to be setting up bun globally, so subsequent run
commands that use bun would fail
Today i discovered an issue with the setup-bun action. We use setup-bun to install the dependencies and then execute the app with node. I also can see that setup-bun not containerized, which runs in the runner directly, does not have any issues.
How to reproduce
Logs
I believe the action looks for node in the wrong space when containerized.
How to fix?
Swap out the install action to the install script. See the lastest docs to see how to pin specific versions, if desired:
Feel free to close this ticket if you cannot reproduce it. I am unsure if this is a big issue or not. It would be nice to use the setup-bun action everywhere but i am fine with the install script workaround.