mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +00:00
13 lines
474 B
PowerShell
13 lines
474 B
PowerShell
################################################################################
|
|
## File: Install-ChocolateyPackages.ps1
|
|
## Desc: Install common Chocolatey packages
|
|
################################################################################
|
|
|
|
$commonPackages = (Get-ToolsetContent).choco.common_packages
|
|
|
|
foreach ($package in $commonPackages) {
|
|
Choco-Install -PackageName $package.name -ArgumentList $package.args
|
|
}
|
|
|
|
Invoke-PesterTests -TestFile "ChocoPackages"
|