[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:07 PM +0330) 47814a7e d81bae5d

+5 -5
+4 -4
.github/workflows/ci.yml
··· 101 101 102 102 - name: Install shell dependencies (Windows) 103 103 if: matrix.os == 'windows-latest' 104 - shell: pwsh 104 + shell: powershell 105 105 run: | 106 106 # Windows specific shell setup 107 107 switch ("${{ matrix.shell }}") { ··· 113 113 Write-Host "Bash available via Git for Windows" 114 114 } 115 115 "powershell" { 116 - # PowerShell is already installed on Windows 117 - Write-Host "PowerShell already available" 116 + # Install PowerShell Core for consistency across platforms 117 + winget install --id Microsoft.Powershell --source winget --silent 118 118 } 119 119 default { 120 120 Write-Host "Shell ${{ matrix.shell }} not supported on Windows" ··· 141 141 142 142 - name: Verify shell installation (Windows) 143 143 if: matrix.os == 'windows-latest' 144 - shell: pwsh 144 + shell: powershell 145 145 run: | 146 146 switch ("${{ matrix.shell }}") { 147 147 "bash" {
+1 -1
tests/package-manager-integration.test.ts
··· 179 179 break; 180 180 } 181 181 } 182 - }); 182 + }, 15000); // Increase timeout to 15 seconds for these intensive tests 183 183 }); 184 184 }); 185 185