From f3d0c3e2a8aede9f56531e46c05836793c0828fe Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 20 Jan 2025 14:41:40 +0100 Subject: [PATCH] ci(azure-pipelines): add debug info --- azure-pipelines.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 9a68e94bc..b9dadd096 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -93,12 +93,14 @@ jobs: image: devfra.azurecr.io/de.fraport.fradrive.build/frontend:$(Build.BuildNumber) endpoint: devfra env: - FRADRIVE_MAKE_TARGET: --compile-frontend PROJECT_DIR: /fradrive IN_CONTAINER: true + IN_CI: true steps: - checkout: self - - script: make -- --compile-frontend IN_CONTAINER=true PROJECT_DIR=${PROJECT_DIR} + - script: | + cat .npmrc + make -- --compile-frontend IN_CONTAINER=true IN_CI=true PROJECT_DIR=${PROJECT_DIR} name: frontendCompile - task: Bash@3 name: frontendTest