Merge pull request #31 from ravidsrk/ravidsrk/slop-detect-w2b-web-to-… #104
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: | |
| branches: [main] | |
| jobs: | |
| install: | |
| name: Install & format check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.5 | |
| - run: bun install --frozen-lockfile | |
| - name: Prettier (format check) | |
| run: bun run format:check | |
| # Per-package lint / typecheck / test / smoke jobs come back as the | |
| # per-package configs land (tsup configs, vitest configs, composite | |
| # tsconfigs). Tracked in follow-up PRs to keep this one focused on | |
| # tooling foundation only. |