···25 # run: npm run lint
2627 - name: Type check
28- run: npx tsc --noEmit
2930 - name: Run tests
31- run: npm run test:run
3233 - name: Generate coverage report
34- run: npm run test:coverage
3536 - name: Upload coverage to Codecov
37 uses: codecov/codecov-action@v4
···25 # run: npm run lint
2627 - name: Type check
28+ run: bun run type-check
2930 - name: Run tests
31+ run: bun run test:run
3233 - name: Generate coverage report
34+ run: bun run test:coverage
3536 - name: Upload coverage to Codecov
37 uses: codecov/codecov-action@v4
+1-1
.husky/pre-push
···1#!/usr/bin/env sh
2. "$(dirname -- "$0")/_/husky.sh"
34-npm run type-check
···1#!/usr/bin/env sh
2. "$(dirname -- "$0")/_/husky.sh"
34+bun run type-check