I have a strange bug with electron-builder. If it is started with npm or npx, it just freezes at some point. However, when started with yarn, it works fine.
So I'd like to tell the action to definitely use yarn, even if the package-lock.json file exists. Is that possible?
My current workaround is to rename the package-lock.json file to something else before running this action, but that's not very practicable.
I have a strange bug with
electron-builder
. If it is started with npm or npx, it just freezes at some point. However, when started with yarn, it works fine. So I'd like to tell the action to definitely use yarn, even if thepackage-lock.json
file exists. Is that possible?My current workaround is to rename the package-lock.json file to something else before running this action, but that's not very practicable.