From 0afa9251d61a0b099e03c6e318fd7d18a825b2c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sat, 4 Jul 2026 11:39:53 +0400 Subject: [PATCH] =?UTF-8?q?ci:=20ex=C3=A9cuter=20les=20tests=20dans=20depl?= =?UTF-8?q?oy-beta=20et=20deploy-prod?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy-beta.yml | 3 +++ .gitea/workflows/deploy-prod.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.gitea/workflows/deploy-beta.yml b/.gitea/workflows/deploy-beta.yml index 154b863..e8eebe9 100644 --- a/.gitea/workflows/deploy-beta.yml +++ b/.gitea/workflows/deploy-beta.yml @@ -20,6 +20,9 @@ jobs: - name: Installer les dépendances run: yarn install --frozen-lockfile + - name: Lancer les tests + run: yarn test + - name: Build Strapi run: yarn build diff --git a/.gitea/workflows/deploy-prod.yml b/.gitea/workflows/deploy-prod.yml index bbcf9d1..adfacae 100644 --- a/.gitea/workflows/deploy-prod.yml +++ b/.gitea/workflows/deploy-prod.yml @@ -22,6 +22,9 @@ jobs: - name: Installer les dépendances run: yarn install --frozen-lockfile + - name: Lancer les tests + run: yarn test + - name: Build Strapi run: yarn build