diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 08f23e96..aa998398 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,12 +15,19 @@ jobs: unityVersion: - 6000.0.37f1 steps: - - name: Manually Install Node.js + - name: Update APT and Install Curl run: | - curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - - sudo apt-get install -y nodejs - node -v - npm -v + apt update + apt install -y curl + + - name: Manually Install Node.js and Dependencies + run: | + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt install -y nodejs + node -v + npm -v + npm install + - uses: actions/checkout@v4 with: fetch-depth: 0