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