feat(deps): Ajouter l'installation des dépendances Bun

This commit is contained in:
Serreau Jovann
2025-07-17 08:49:41 +02:00
parent 528908d895
commit 1734a016ea

View File

@@ -41,3 +41,11 @@ jobs:
- name: Install Composer dependencies
run: composer install --no-suggest --no-interaction --prefer-dist
- name: Install Bun dependencies
run: |
if [ -f "package.json" ]; then
bun install
else
echo "Warning: No package.json found. Skipping Bun install."
fi