fix: install nodejs for checkout action
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled

This commit is contained in:
jade
2026-07-23 23:32:44 +09:00
parent 7f85b10938
commit 18959b5128

View File

@@ -11,6 +11,11 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install Node for Checkout
run: |
if command -v apt-get >/dev/null; then apt-get update && apt-get install -y nodejs git; fi
if command -v apk >/dev/null; then apk add nodejs git; fi
- name: Checkout Code
uses: actions/checkout@v4