Mise à jour du cache de build pour inclure le répertoire var et ajout de la commande de nettoyage du cache dans le job vue-tsc

This commit is contained in:
Boris Waaub
2026-02-04 16:25:36 +01:00
parent 8b129417df
commit b3667b797f

View File

@@ -107,7 +107,7 @@ build:
expire_in: 1 day
paths:
- vendor/
- var/translations/
- var/
code_style:
stage: Tests
@@ -189,6 +189,7 @@ vue_tsc:
script:
- yarn install --ignore-optional
- yarn build
- php bin/console cache:clear
- yarn vue-tsc --noEmit > vue-tsc-report.txt 2>&1 || true
- cat vue-tsc-report.txt
- grep -q "error" vue-tsc-report.txt && exit 2 || exit 0