Closed adam2k closed 1 year ago
Looks good. Only thing is I'm unsure if yarn
will work in the GitHub workflows.
Also highlights that it doesn't run on PRs from external contributors (such as this one). Will investigate.
@adam2k after investigating, it should work fine. if you rebase and fix the conflicts I'll merge this in
Closing in favor of https://github.com/lightninglabs/lnc-web/pull/73
@adam2k - appreciate your efforts here so I made you a co-author on the new PR. The only major thing I changed was using yarn's version locking in the GitHub Action workflows: yarn install --frozen-lockfile
Switch from
npm
toyarn
to be more consistent with the other LND projects (yarn
is used in lightning-terminal, builders-guide-sample-app).A similar change could also be applied to lnc-core. This project is still using
npm
.Test Steps:
yarn.lock
file runyarn import
in each of the directories containing apackage-lock.json
file.yarn
commands and demo applications still work as expected