From 9767070046e8b89bc0ea74591126a84b85559d6a Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 28 Oct 2024 13:34:49 +0100 Subject: [PATCH] ci(azure-pipelines): modify test steps --- azure-pipelines.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 75a8f78c8..f99f113cb 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -6,9 +6,9 @@ jobs: image: 'devfra.azurecr.io/de.fraport.trusted/ubuntu:22.04' endpoint: devfra steps: - - displayName: 'Run a one-line script' - script: echo Hello, world! - - displayName: 'Run a multi-line script' - script: | + - script: echo Hello, world! + displayName: 'Run a one-line script' + - script: | echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml \ No newline at end of file + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' \ No newline at end of file