Add Git installation step to Alpine Linux build workflow

- Install Git in the Alpine Linux container
- Ensure Git is available for repository checkout
- Resolve potential Git-related issues in the workflow
This commit is contained in:
Eric X. Liu 2025-02-01 06:33:17 +00:00
parent ebed40b93d
commit b01f0d9807

@ -17,6 +17,10 @@ jobs:
container: node:current-alpine
steps:
- name: Install Git
run: |
apk add --no-cache git
- name: Checkout repository
uses: actions/checkout@v3
with: