ci: Add docker and git to workflow dependencies

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-23 20:51:04 -07:00
parent f0570c2cb1
commit 610ec061ca

View File

@@ -15,14 +15,14 @@ jobs:
build:
runs-on: docker
steps:
- name: Install Node.js
- name: Install dependencies
run: |
if command -v apk > /dev/null; then
apk add --no-cache nodejs npm
apk add --no-cache nodejs npm docker git
elif command -v apt-get > /dev/null; then
apt-get update && apt-get install -y nodejs npm
apt-get update && apt-get install -y nodejs npm docker.io git
elif command -v yum > /dev/null; then
yum install -y nodejs npm
yum install -y nodejs npm docker git
fi
- name: Checkout