ci(azure-pipelines): add frontend build job

This commit is contained in:
Sarah Vaupel 2025-01-16 12:01:07 +01:00
parent 15f6dd9211
commit cd15ddea2f

View File

@ -75,4 +75,26 @@ jobs:
displayName: Docker Logout from devfra
inputs:
command: logout
containerRegistry: devFra
containerRegistry: devFra
- job: CompileFrontend
container:
image: devfra.azurecr.io/de.fraport.fradrive.build/frontend:$(Build.BuildNumber)
endpoint: devfra
steps:
- checkout: self
- task: Bash@3
name: compileFrontend
displayName: Compile frontend
inputs:
targetType: inline
script: |
make compile-frontend
- task: Bash@3
name: testFrontend
displayName: Test frontend
inputs:
targetType: inline
script: |
make lint-frontend
make test-frontend