...
1parameters:
2 ScanPath: $(Build.SourcesDirectory)
3 RepoRoot: $(Build.SourcesDirectory)
4 SettingsPath: '$(Build.SourcesDirectory)/eng/.docsettings.yml'
5 DocWardenVersion : '0.7.2'
6
7steps:
8- task: PowerShell@2
9 displayName: "Verify Readmes"
10 inputs:
11 filePath: "eng/common/scripts/Verify-Readme.ps1"
12 arguments: >
13 -DocWardenVersion ${{ parameters.DocWardenVersion }}
14 -ScanPath ${{ parameters.ScanPath }}
15 -RepoRoot ${{ parameters.RepoRoot }}
16 -SettingsPath ${{ parameters.SettingsPath }}
17 pwsh: true
View as plain text