From bba0e175a24f5bde0a42b9c69944fd4a452f56ce Mon Sep 17 00:00:00 2001 From: Manus CI Date: Fri, 21 Aug 2026 11:03:22 +0000 Subject: [PATCH] CI fix : npm install au lieu de npm ci (pas de package-lock.json) --- .gitea/workflows/validate.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/validate.yml b/.gitea/workflows/validate.yml index c680a1c..ce0ec15 100644 --- a/.gitea/workflows/validate.yml +++ b/.gitea/workflows/validate.yml @@ -19,14 +19,8 @@ jobs: - name: Récupérer les sources uses: actions/checkout@v4 - - name: Installer les dépendances backend - run: cd backend && npm ci --ignore-scripts + - name: Installer et build backend + run: cd backend && npm install --ignore-scripts && npm run build - - name: Build backend - run: cd backend && npm run build - - - name: Installer les dépendances frontend - run: cd frontend && npm ci --ignore-scripts - - - name: Build frontend - run: cd frontend && npm run build + - name: Installer et build frontend + run: cd frontend && npm install --ignore-scripts && npm run build