Ionosphere.tv
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add GitHub Actions workflow for typecheck and test

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+31
+31
.github/workflows/ci.yml
··· 1 + name: CI 2 + 3 + on: 4 + push: 5 + branches: [main] 6 + pull_request: 7 + branches: [main] 8 + 9 + jobs: 10 + check: 11 + runs-on: ubuntu-latest 12 + 13 + steps: 14 + - uses: actions/checkout@v4 15 + 16 + - uses: pnpm/action-setup@v4 17 + with: 18 + version: 10 19 + 20 + - uses: actions/setup-node@v4 21 + with: 22 + node-version: 24 23 + cache: pnpm 24 + 25 + - run: pnpm install --frozen-lockfile 26 + 27 + - name: Typecheck 28 + run: pnpm -r typecheck 29 + 30 + - name: Test 31 + run: pnpm -r test