From 5a210c9da0c17a262ed775cab72746e035bd3bf4 Mon Sep 17 00:00:00 2001 From: Zach FettersMoore <4425109+BobaFetters@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:59:46 -0400 Subject: [PATCH] Upload server test changes --- .github/workflows/pr-validation.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 9639f5c4b..d71cacaa2 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -187,16 +187,14 @@ jobs: - name: Setup Repo id: setup-repo uses: ./.github/actions/setup-repo + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 12.22.10 - name: Setup Servers shell: bash run: | - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash - export NVM_DIR="$HOME/.nvm" - [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" - [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" - nvm install v18.15.0 - nvm use v18.15.0 - cd SimpleUploadServer && npm start & + cd SimpleUploadServer && npm install && npm start & sudo chmod -R +rwx SimpleUploadServer # - name: Setup Upload Server # shell: bash