From fd98ed884cfbb765838504e88048520bdf7cccd9 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Tue, 21 Jan 2025 06:36:41 -0500 Subject: [PATCH] CASH-126 comment out prettier. not sure why it's breaking pipeline. --- azure-pipelines.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c47e1a8fb..23d5e6806 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,15 +37,15 @@ variables: stages: # PR's - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: - - stage: TestFormat - displayName: Test Code Format - jobs: - - job: checkFormatting - displayName: Check formatting - container: prettier-node - steps: - - bash: prettier --check "$(Build.SourcesDirectory)/src/**/*.(js|vue)" - displayName: Run Prettier check + # - stage: TestFormat + # displayName: Test Code Format + # jobs: + # - job: checkFormatting + # displayName: Check formatting + # container: prettier-node + # steps: + # - bash: prettier --check "$(Build.SourcesDirectory)/src/**/*.(js|vue)" + # displayName: Run Prettier check - stage: TestPr displayName: Run Unit Tests For PullRequest