[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

Select the types of activity you want to include in your feed.

update ci

AmirSa12 (Aug 17, 2025, 11:13 PM +0330) 668875ce 3e7b5933

+7 -2
+7 -2
.github/workflows/ci.yml
··· 113 113 Write-Host "Bash available via Git for Windows" 114 114 } 115 115 "powershell" { 116 - # Install PowerShell Core for consistency across platforms 117 - choco install powershell-core -y 116 + # Check if PowerShell Core is available, install if needed 117 + if (!(Get-Command pwsh -ErrorAction SilentlyContinue)) { 118 + Write-Host "Installing PowerShell Core..." 119 + choco install powershell-core -y --force 120 + } else { 121 + Write-Host "PowerShell Core already available" 122 + } 118 123 } 119 124 default { 120 125 Write-Host "Shell ${{ matrix.shell }} not supported on Windows"