Skip to content

Add ti flag for tsci search command #4928

Add ti flag for tsci search command

Add ti flag for tsci search command #4928

Workflow file for this run

name: Windows Bun Tests
on:
pull_request:
push:
branches: [main]
jobs:
windows-tests:
runs-on: windows-latest
if: "${{ github.event_name != 'pull_request' || github.event.pull_request.title != 'chore: bump version' }}"
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.1
- name: Cache Bun install cache
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run Windows-only tests
shell: bash
run: |
shopt -s globstar
bun run scripts/run-tests-with-retry.ts --timeout 30000 tests/windows/**/*.test.ts