Skip to content

Commit

Permalink
close all vscode running instances
Browse files Browse the repository at this point in the history
Signed-off-by: midays <[email protected]>
  • Loading branch information
midays committed Nov 25, 2024
1 parent f44601d commit 6c75f68
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/windows-nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6c75f68

Please sign in to comment.