Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/tools/scripts/run_and_test_website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ sleep 2
pgrep -if "python main.py"

echo "Installing node modules"
npm install
if [ "$GITHUB_ACTIONS" ]; then
npm ci
else
npm install
fi

echo "Building website"
npm run generate
Expand Down