fix: install nodejs for checkout action
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user