mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
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>
14 lines
185 B
Bash
Executable File
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 ..
|