We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67bc9c commit dd6e1b3Copy full SHA for dd6e1b3
.vsts-ci/templates/ci-general.yml
@@ -14,6 +14,16 @@ steps:
14
script: $PSVersionTable
15
pwsh: ${{ parameters.pwsh }}
16
17
+- task: PowerShell@2
18
+ displayName: Update Pester
19
+ inputs:
20
+ targetType: inline
21
+ script: |
22
+ Install-Module -Name Pester -Force -Scope CurrentUser
23
+ Get-Module -ListAvailable -Name Pester
24
+ pwsh: false
25
+ condition: not(${{ parameters.pwsh }})
26
+
27
- checkout: self
28
29
# NOTE: We either checkout the Git repo for PowerShellEditorServices, or we
0 commit comments