+3
-3
.github/workflows/ci.yml
+3
-3
.github/workflows/ci.yml
···
25
25
# run: npm run lint
26
26
27
27
- name: Type check
28
-
run: npx tsc --noEmit
28
+
run: bun run type-check
29
29
30
30
- name: Run tests
31
-
run: npm run test:run
31
+
run: bun run test:run
32
32
33
33
- name: Generate coverage report
34
-
run: npm run test:coverage
34
+
run: bun run test:coverage
35
35
36
36
- name: Upload coverage to Codecov
37
37
uses: codecov/codecov-action@v4