How to install npm packages stored at GitHub Packages Registry as dependencies in a GitHub Actions workflow
When working on npm
projects with multiple subprojects as dependencies,
there’s a problem when you need to do frequent updates. Ideally, that
dependencies should have their own tests and versioning, but that’s not always
possible (for example, private packages) and sometimes we would need to publish
multiple development versions while trying to debug some obscure issues. This
is tedious and nasty, so that’s why so much people like monorepos.