Files
VOREStation/tools/ci/install_node.sh
T
Kashargul 9c71c3bb4f Yarn to bun migration port (#17887)
* Yarn to bun migration port

* .

* .

* .

* .

* .

* .

* .

* missed that

* ...

* can't have those

* end of compat

* port tg 91703

* we need to accept the eula

* make sure to use basic

* -f as JL suggested

* Update dependencies.sh

* push

---------

Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
2025-06-28 02:50:36 +02:00

11 lines
170 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
source dependencies.sh
if [[ -e ~/.nvm/nvm.sh ]]; then
source ~/.nvm/nvm.sh
nvm install $NODE_VERSION_LTS
nvm use $NODE_VERSION_LTS
fi