diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 072eb9348..18bf8c2e8 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -75,4 +75,26 @@ jobs: displayName: Docker Logout from devfra inputs: command: logout - containerRegistry: devFra \ No newline at end of file + 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 \ No newline at end of file