cleanup #516
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: | |
| - "**" | |
| - "!integrated/**" | |
| - "!stl-preview-head/**" | |
| - "!stl-preview-base/**" | |
| - "!generated" | |
| - "!codegen/**" | |
| - "codegen/stl/**" | |
| pull_request: | |
| branches-ignore: | |
| - "stl-preview-head/**" | |
| - "stl-preview-base/**" | |
| jobs: | |
| test: | |
| timeout-minutes: 15 | |
| name: test (${{ matrix.os }} / bun ${{ matrix.bun }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| bun: [1.3.10] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: ${{ matrix.bun }} | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Typecheck | |
| run: bun run typecheck | |
| - name: Test | |
| run: bun run test | |
| # Binary/Homebrew packaging is intentionally disabled until binary releases | |
| # are ready to ship. Re-enable this job with the package scripts already kept | |
| # in packages/cli/package.json: | |
| # | |
| # package: | |
| # name: package homebrew archive | |
| # runs-on: macos-latest | |
| # needs: test | |
| # steps: | |
| # - uses: actions/checkout@v6 | |
| # | |
| # - uses: oven-sh/setup-bun@v2 | |
| # with: | |
| # bun-version: 1.3.10 | |
| # | |
| # - name: Install dependencies | |
| # run: bun install --frozen-lockfile | |
| # | |
| # - name: Package Homebrew archive | |
| # run: bun run --filter beeper-cli pack:homebrew |