From ca2a28e6b1ece63e9cf64bfb978a1a857f7bda71 Mon Sep 17 00:00:00 2001 From: Gallay Lajos Date: Wed, 4 Sep 2024 10:57:18 +0200 Subject: [PATCH] changed lint and build order for azure pipelines --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d04afd0..ce92671 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,12 +22,12 @@ steps: - script: yarn install displayName: 'Yarn install' - - script: yarn lint - displayName: 'Yarn Lint' - - script: yarn build displayName: 'Build' + - script: yarn lint + displayName: 'Yarn Lint' + - script: yarn test:unit displayName: 'Unit tests'