Files
CHOMPStation2/tools/ci/build_tgui.sh
CHOMPStation2 95a4a5c1dd [MIRROR] Adds Juke Build (#9006)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2024-09-24 02:30:54 +02:00

14 lines
185 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
source dependencies.sh
source ~/.nvm/nvm.sh
nvm use $NODE_VERSION_LTS
cd tgui
chmod +x bin/tgui
bin/tgui --lint
bin/tgui --test
yarn tgui:prettier
cd ..