Fix Gitea workflow for CI compatibility
Build Project / build (push) Failing after 1s

This commit is contained in:
Kevin
2026-06-28 11:28:55 +02:00
parent 6ba172e476
commit b217b33c2d
+9 -3
View File
@@ -11,9 +11,15 @@ jobs:
container: node:24 # Utilise l'image officielle Node.js 24
steps:
- name: Checkout repository
uses: actions/checkout@v4 # Action Gitea pour checkout
with:
fetch-depth: 0
run: |
git config --global advice.detachedHead false
git checkout -- .
git submodule update --init --recursive
- name: Setup Node.js
run: |
curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
apt-get install -y nodejs
- name: Install dependencies
run: npm ci