https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42353 --- Comment #2 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 197257 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=197257&action=edit Bug 42353: [22.11] Store the node version in .nvmrc The context is koha-i18n and the Weblate sync. We need to know which version of node to use before running yarn install. Prior to the upgrade to Node 20 all our Koha versions were using the same version (18). Now 22.11 is using 18 and others are using 20. We need to announce which version is needed for each of our branch. Test plan: Apply this patch Install nvm: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash run `nvm use` => It tells you to install 20 nvm install 20 nvm use # will read .nvmrc and use 20 yarn install => Success Checkout Koha's branch 22.11.x (git checkout origin/22.11.x) Apply the patch for 22.11 nvm use => It tells you to install 18 nvm install 18 nvm use # wil read .nvmrc and use 18 yarn install => Success git checkout bug_42353 (main + 42353's patch for main) nvm use && yarn install => Success -- You are receiving this mail because: You are watching all bug changes.