this repo has no description
0
fork

Configure Feed

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

fix CI

TKTK df69621d 056a99e3

+3 -3
+3 -3
.github/workflows/basic-ci.yml
··· 18 18 - name: Install dependencies 19 19 run: bun install 20 20 - name: Run ESLint 21 - run: bunx eslint . --ignore-pattern 'dist/**/*' 21 + run: bun run lint 22 22 23 23 typecheck: 24 24 runs-on: ubuntu-24.04-arm ··· 31 31 bun-version: latest 32 32 - run: bun install 33 33 - name: Type-check with tsc 34 - run: bunx tsc --noEmit 34 + run: bun run typecheck 35 35 36 36 test: 37 37 runs-on: ubuntu-24.04-arm ··· 44 44 bun-version: latest 45 45 - run: bun install 46 46 - name: Run unit tests 47 - run: bunx tsx tests/transform.test.ts 47 + run: bun run test 48 48 49 49 build: 50 50 runs-on: ubuntu-24.04-arm