Exclude vitest.config.ts from tiered-usage-gated-subscription tsconfig #6
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: ['**'] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| name: Biome Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.3.1' | |
| - run: bun install --frozen-lockfile | |
| - run: bunx @biomejs/biome check . | |
| typecheck: | |
| name: TypeScript Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.3.1' | |
| - run: bun install --frozen-lockfile | |
| - run: bunx turbo typecheck |