File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 steps :
1111 - name : Vérifier le nom de la branche
12+ shell : bash
1213 run : |
1314 BRANCHE="${{ github.head_ref }}"
1415 echo "Nom de branche détecté : $BRANCHE"
Original file line number Diff line number Diff line change @@ -32,22 +32,22 @@ jobs:
3232 done
3333
3434 echo "🔎 Vérification des fichiers internes du frontend..."
35- if [ ! -f "frontend/package.json" ]; then
36- echo "❌ frontend/package.json manquant"
35+ if [ ! -f "app/ frontend/package.json" ]; then
36+ echo "❌ app/ frontend/package.json manquant"
3737 MISSING=true
3838 fi
39- if [ ! -f "frontend/.env.example" ]; then
40- echo "❌ frontend/.env.example manquant"
39+ if [ ! -f "app/ frontend/.env.example" ]; then
40+ echo "❌ app/ frontend/.env.example manquant"
4141 MISSING=true
4242 fi
4343
4444 echo "🔎 Vérification des fichiers internes du backend..."
45- if [ ! -f "backend/package.json" ]; then
46- echo "❌ backend/package.json manquant"
45+ if [ ! -f "app/ backend/package.json" ]; then
46+ echo "❌ app/ backend/package.json manquant"
4747 MISSING=true
4848 fi
49- if [ ! -f "backend/.env.example" ]; then
50- echo "❌ backend/.env.example manquant"
49+ if [ ! -f "app/ backend/.env.example" ]; then
50+ echo "❌ app/ backend/.env.example manquant"
5151 MISSING=true
5252 fi
5353
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 steps :
1111 - name : Vérifier la référence à une issue
12+ shell : bash
1213 run : |
1314 BRANCHE="${{ github.head_ref }}"
1415 TITRE="${{ github.event.pull_request.title }}"
File renamed without changes.
You can’t perform that action at this time.
0 commit comments