File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
# The branches below must be a subset of the branches above
8
8
branches : [ main ]
9
- paths-ignore : [ '**/*.md' ]
10
9
merge_group :
11
10
types : [ checks_requested ]
12
11
50
49
51
50
- name : Install PSResources
52
51
shell : pwsh
53
- run : ../PowerShellEditorServices /tools/installPSResources.ps1
52
+ run : ./tools/installPSResources.ps1
54
53
55
54
- name : Deploy generated NuGet configuration
56
55
shell : pwsh
Original file line number Diff line number Diff line change
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
4
+ Set-PSRepository - Name PSGallery - InstallationPolicy Trusted | Out-Null
5
+ if ($PSVersionTable.PSVersion.Major -lt 6 ) {
6
+ throw " The build script requires PowerShell 7!"
7
+ }
8
+
9
+ # TODO: Switch to Install-PSResource when CI uses PowerShell 7.4
10
+ Install-Module - Name InvokeBuild - Scope CurrentUser
11
+ Install-Module - Name platyPS - Scope CurrentUser
You can’t perform that action at this time.
0 commit comments