docs: remove internal process docs from public surface #13
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", "master"] | |
| pull_request: | |
| branches: ["main", "master"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.1.0" | |
| - name: Install | |
| run: bun install | |
| - name: Browser compatibility check | |
| run: bun run check:core-compat | |
| - name: Lint | |
| run: bun run lint | |
| - name: Test | |
| run: bun run test | |
| - name: Build | |
| run: bun run build | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.1.0" | |
| - name: Install | |
| run: bun install | |
| - name: Install Playwright Browsers | |
| run: bunx playwright install --with-deps | |
| - name: E2E Smoke Tests | |
| run: bun run --cwd apps/web test:e2e |