Issue with Github Actions when using Node & Dotnet together
So this is quite a bit of a weird issue Ive been stuck on for a few hours now, no AI can help and reading docs isnt working either.
Ive made a small library so I can use Lucide Icons as Components within Blazor, and it works> The issue isnt with the code, but with the github action. I rely on downloading the lucide-static npm package, which is then used by my source generator in
InfiniLore.Lucide.Generators.Raw
InfiniLore.Lucide.Generators.Raw
to extract all the data that I need. Somewhere somehow I dont understand how github actions is installing the node module correctly, but then dotnet cant find it ...
Thanks for any help in advance (The repo is not in its final state but is functional, as I want to try and see if I can implement some kind of system close to tree-shaking so I have the option to only send over icons used by the library in Wasm mode, so we arent sending over tons of unused data )