diff --git a/.github/workflows/windows-nightly-ci.yml b/.github/workflows/windows-nightly-ci.yml index b7b60b5..70d3c1b 100644 --- a/.github/workflows/windows-nightly-ci.yml +++ b/.github/workflows/windows-nightly-ci.yml @@ -55,6 +55,11 @@ jobs: run: | code --version node --version + - name: Close All VSCode Instances + shell: powershell + run: | + # Close all running instances of VSCode + Get-Process -Name "Code" -ErrorAction SilentlyContinue | ForEach-Object { $_.CloseMainWindow() } | Out-Null - name: Clone kai-ci repo shell: powershell