CASH-126
comment out prettier. not sure why it's breaking pipeline.
This commit is contained in:
parent
a8e6dfa9c3
commit
fd98ed884c
1 changed files with 9 additions and 9 deletions
|
|
@ -37,15 +37,15 @@ variables:
|
||||||
stages:
|
stages:
|
||||||
# PR's
|
# PR's
|
||||||
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
|
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
|
||||||
- stage: TestFormat
|
# - stage: TestFormat
|
||||||
displayName: Test Code Format
|
# displayName: Test Code Format
|
||||||
jobs:
|
# jobs:
|
||||||
- job: checkFormatting
|
# - job: checkFormatting
|
||||||
displayName: Check formatting
|
# displayName: Check formatting
|
||||||
container: prettier-node
|
# container: prettier-node
|
||||||
steps:
|
# steps:
|
||||||
- bash: prettier --check "$(Build.SourcesDirectory)/src/**/*.(js|vue)"
|
# - bash: prettier --check "$(Build.SourcesDirectory)/src/**/*.(js|vue)"
|
||||||
displayName: Run Prettier check
|
# displayName: Run Prettier check
|
||||||
|
|
||||||
- stage: TestPr
|
- stage: TestPr
|
||||||
displayName: Run Unit Tests For PullRequest
|
displayName: Run Unit Tests For PullRequest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue