chore(deps): update dependency @types/bun to v1.3.2 #5157
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| cancel-in-progress: true | |
| group: ${{ github.workflow }}=${{ github.head_ref }} | |
| jobs: | |
| ci: | |
| name: Build, Lint, Test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| node-version: ['20.19.0', '22.12.0', '24.10.0'] | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v4.2.0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build packages | |
| run: pnpm build --filter="@hey-api/**" | |
| - name: Check examples generated code | |
| if: matrix.node-version == '24.10.0' && matrix.os == 'ubuntu-latest' | |
| run: pnpm examples:check | |
| - name: Build examples | |
| if: matrix.node-version == '24.10.0' && matrix.os == 'ubuntu-latest' | |
| run: pnpm build --filter="@example/**" | |
| - name: Run linter | |
| run: pnpm lint | |
| - name: Run type check | |
| run: pnpm typecheck | |
| - name: Test packages | |
| run: pnpm test --filter="@hey-api/**" --filter="@test/**" | |
| - name: Test examples | |
| if: matrix.node-version == '24.10.0' && matrix.os == 'ubuntu-latest' | |
| run: pnpm test --filter="@example/**" | |
| - name: Publish preview packages | |
| if: github.event_name == 'pull_request' && matrix.node-version == '24.10.0' && matrix.os == 'ubuntu-latest' | |
| run: ./scripts/publish-preview-packages.sh | |
| env: | |
| TURBO_SCM_BASE: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} |