Switch from shiki/bunlde/web to a curated list of langs and rm wasm j… #40
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: | |
| jobs: | |
| lint-test: | |
| runs-on: ubuntu-latest | |
| env: | |
| OPEN_PLAN_ANNOTATOR_SKIP_INSTALL: "1" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.9 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Install UI dependencies | |
| run: cd ui && bun install | |
| - name: Typecheck | |
| run: bun run typecheck | |
| - name: Lint | |
| run: bun run lint | |
| - name: Test | |
| run: bun test | |
| - name: Build smoke test | |
| run: bun run build | |
| - name: Package smoke test | |
| run: bun run pack:check |