ci(forgejo): install git in commitlint container
Some checks failed
CI / lint (pull_request) Successful in 30s
CI / typecheck (pull_request) Failing after 1m33s
CI / commitlint (pull_request) Failing after 45s
CI / test (pull_request) Failing after 2m14s
CI / security (pull_request) Failing after 34s
CI / gitleaks (pull_request) Successful in 32s

This commit is contained in:
Crypto Rug Munch 2026-07-03 18:25:38 +02:00
parent 2f1eec2f78
commit 79842ae39e

View file

@ -130,6 +130,11 @@ jobs:
container:
image: node:22-slim
steps:
- name: Install git
run: |
apt-get update
apt-get install -y --no-install-recommends git
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v4
with:
fetch-depth: 0