mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
11 lines
497 B
PowerShell
11 lines
497 B
PowerShell
####################################################################################
|
|
## File: Install-AzureCosmosDbEmulator.ps1
|
|
## Desc: Install Azure CosmosDb Emulator
|
|
####################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url "https://aka.ms/cosmosdb-emulator" `
|
|
-ExpectedSHA256Sum "AB040B9A0FBC4766E179554B9899B947C41E3A259F8A0FC63022DB8D0C562769"
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Azure Cosmos DB Emulator"
|