Adding node js for checkout script
Some checks failed
godot-ci export / Windows Export (push) Failing after 5m38s
godot-ci export / Linux Export (push) Failing after 3s

This commit is contained in:
2025-07-01 03:45:29 -07:00
parent 3ce1faf989
commit 35d1c2232e

View File

@ -4,7 +4,7 @@ on: push
# NOTE: If your `project.godot` is at the repository root, set `PROJECT_PATH` below to ".".
env:
GODOT_VERSION: 4.3
GODOT_VERSION: 4.4
EXPORT_NAME: test-project
PROJECT_PATH: "."
@ -13,8 +13,12 @@ jobs:
name: Windows Export
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
container:
image: barichello/godot-ci:4.3
image: barichello/godot-ci:4.4
steps:
- name: Install Node.js # Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
run: |
apt-get update
apt-get install -y nodejs npm
- name: Checkout
uses: actions/checkout@v4
with:
@ -41,7 +45,7 @@ jobs:
name: Linux Export
runs-on: ubuntu-22.04 # Use 22.04 with godot 4
container:
image: barichello/godot-ci:4.3
image: barichello/godot-ci:4.4
steps:
- name: Checkout
uses: actions/checkout@v4