We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ddd81e commit a25535eCopy full SHA for a25535e
1 file changed
.github/workflows/build_node_shared.yml
@@ -109,6 +109,11 @@ jobs:
109
if: matrix.platform == 'win'
110
shell: powershell
111
run: |
112
+ # Install required PowerShell modules for WinGet DSC
113
+ Write-Host "Installing PowerShell DSC modules required by WinGet configure..."
114
+ Install-Module -Name Microsoft.WinGet.DSC -Force -AllowClobber -Scope CurrentUser -Repository PSGallery
115
+ Install-Module -Name Microsoft.VisualStudio.DSC -Force -AllowClobber -Scope CurrentUser -Repository PSGallery
116
+
117
# Download the WinGet configuration file from Node.js repository
118
$configUrl = "https://raw.githubusercontent.com/nodejs/node/main/.configurations/configuration.dsc.yaml"
119
$configFile = "configuration.dsc.yaml"
0 commit comments