curl install
Some checks failed
Build project / Build for ${{ matrix.targetPlatform }} (StandaloneLinux64, 6000.0.37f1) (push) Failing after 3s
Build project / Build for ${{ matrix.targetPlatform }} (StandaloneWindows64, 6000.0.37f1) (push) Failing after 3s

This commit is contained in:
EthanPisani 2025-02-18 15:47:55 -05:00
parent 07463823ac
commit 70fc72623c

View File

@ -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
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