test(frontend): suppression des conditions if

This commit is contained in:
ineszang44
2026-09-16 11:28:49 +02:00
parent 078983a41d
commit 1f0eb410eb
+1 -4
View File
@@ -22,7 +22,6 @@ on:
jobs: jobs:
build: build:
if: ${{ github.event.inputs.job_choice == 'build' || github.event.inputs.job_choice == 'all' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
@@ -37,8 +36,7 @@ jobs:
- run: npm run build - run: npm run build
working-directory: apps/frontend working-directory: apps/frontend
test: test:
if: ${{ always() && (github.event.inputs.job_choice == 'test' || github.event.inputs.job_choice == 'all') }}
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -54,7 +52,6 @@ jobs:
working-directory: apps/frontend working-directory: apps/frontend
sonarqube: sonarqube:
if: ${{ always() && (github.event.inputs.job_choice == 'sonarqube' || github.event.inputs.job_choice == 'all') }}
needs: [build, test] needs: [build, test]
name: SonarQube name: SonarQube
runs-on: ubuntu-latest runs-on: ubuntu-latest