chore: bump version to v0.1.868 #1934
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 node_modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-node-modules-${{ hashFiles('**/bun.lockb', '**/package.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node-modules- | |
| - name: Install dependencies | |
| run: bun install | |
| - 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 | |