From 1f0eb410eb067619b0e57b58c709aed6cf592cb2 Mon Sep 17 00:00:00 2001 From: ineszang44 Date: Wed, 16 Sep 2026 11:28:49 +0200 Subject: [PATCH] test(frontend): suppression des conditions if --- .github/workflows/frontend.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 1cc9af3..0f437a6 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -22,7 +22,6 @@ on: jobs: build: - if: ${{ github.event.inputs.job_choice == 'build' || github.event.inputs.job_choice == 'all' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 @@ -37,8 +36,7 @@ jobs: - run: npm run build working-directory: apps/frontend - test: - if: ${{ always() && (github.event.inputs.job_choice == 'test' || github.event.inputs.job_choice == 'all') }} + test: needs: build runs-on: ubuntu-latest steps: @@ -54,7 +52,6 @@ jobs: working-directory: apps/frontend sonarqube: - if: ${{ always() && (github.event.inputs.job_choice == 'sonarqube' || github.event.inputs.job_choice == 'all') }} needs: [build, test] name: SonarQube runs-on: ubuntu-latest