Skip to content

Commit

Permalink
suceededOrFailed -> succeededOrFailed
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd authored and azure-sdk committed May 25, 2022
1 parent 5c53c08 commit 6f7d18f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eng/common/pipelines/templates/steps/check-spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ parameters:
steps:
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
- task: NodeTool@0
condition: and(suceededOrFailed(), ne(variables['Skip.SpellCheck'],'true'))
condition: and(succeededOrFailed(), ne(variables['Skip.SpellCheck'],'true'))
inputs:
versionSpec: 16.x
displayName: Use Node.js 16.x

- task: PowerShell@2
displayName: Check spelling (cspell)
condition: and(suceededOrFailed(), ne(variables['Skip.SpellCheck'],'true'))
condition: and(succeededOrFailed(), ne(variables['Skip.SpellCheck'],'true'))
continueOnError: ${{ parameters.ContinueOnError }}
inputs:
targetType: filePath
Expand Down

0 comments on commit 6f7d18f

Please sign in to comment.