Skip to content

Commit 83640dd

Browse files
committed
Update readme and CI status badge
1 parent 8fe4874 commit 83640dd

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ The extension should work anywhere VS Code itself and PowerShell Core 7.2 or hig
5858
basis. PowerShell Core 6, 7.0, and 7.1 have reached end-of-support. We test the following
5959
configurations:
6060

61-
- **Windows Server 2022** with Windows PowerShell 5.1 and PowerShell Core 7.2
62-
- **Windows Server 2019** with Windows PowerShell 5.1 and PowerShell Core 7.2
63-
- **macOS 11** with PowerShell Core 7.2
64-
- **Ubuntu 20.04** with PowerShell Core 7.2
61+
- **Windows Server 2022** with Windows PowerShell 5.1 and PowerShell Core 7.2, 7.3 and 7.4
62+
- **macOS 12** with PowerShell Core 7.2, 7.3 and 7.4
63+
- **Ubuntu 22.04** with PowerShell Core 7.2, 7.3 and 7.4
64+
65+
On Windows, we also test with and without Constrained Language Mode enabled.
6566

6667
Read the [installation instructions][]
6768
to get more details on how to use the extension on these platforms.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
},
3131
"badges": [
3232
{
33-
"url": "https://dev.azure.com/powershell/vscode-powershell/_apis/build/status/PowerShell.vscode-powershell?branchName=main",
34-
"href": "https://dev.azure.com/powershell/vscode-powershell/_build/latest?definitionId=51&branchName=main",
33+
"url": "https://github.com/PowerShell/vscode-powershell/actions/workflows/ci-test.yml/badge.svg",
34+
"href": "https://github.com/PowerShell/vscode-powershell/actions/workflows/ci-test.yml?query=branch%3Amain",
3535
"description": "Build Status"
3636
},
3737
{

vscode-powershell.build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ task Package {
128128
[semver]$version = $((Get-Content -Raw -Path package.json | ConvertFrom-Json).version)
129129
Write-Host "`n### Packaging powershell-$version.vsix`n" -ForegroundColor Green
130130
Remove-BuildItem ./out
131-
New-Item -ItemType Directory -Force out
131+
New-Item -ItemType Directory -Force out | Out-Null
132132

133133
Assert-Build (Test-Path ./dist/extension.js) "Extension must be built!"
134134

0 commit comments

Comments
 (0)