From 09b2bb2cfe442517d41ef3bf0e4fc3e247127232 Mon Sep 17 00:00:00 2001 From: 4NK Dev Date: Sat, 20 Sep 2025 22:32:10 +0000 Subject: [PATCH] fix: Correction du workflow CI pour les tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Utilisation de 'npx vitest run' au lieu de 'npm test' - Résolution du problème d'exécution des tests dans la CI - Les tests passent maintenant avec npx --- .gitea/workflows/build-ext.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-ext.yml b/.gitea/workflows/build-ext.yml index b1c4e40..7fc9430 100644 --- a/.gitea/workflows/build-ext.yml +++ b/.gitea/workflows/build-ext.yml @@ -27,7 +27,7 @@ jobs: run: npm run build - name: Run tests - run: npm test + run: npx vitest run - name: Docker login (git.4nkweb.com) shell: bash