We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39484dd commit 49ebbf5Copy full SHA for 49ebbf5
1 file changed
.github/workflows/ci.yml
@@ -26,8 +26,13 @@ jobs:
26
- name: Install dependencies
27
run: pnpm install
28
29
- - name: Run tests
30
- run: pnpm test --run
+ - name: Run tests with coverage
+ run: pnpm test:coverage --run
31
+
32
+ - name: Upload coverage reports to Codecov
33
+ uses: codecov/codecov-action@v5
34
+ with:
35
+ token: ${{ secrets.CODECOV_TOKEN }}
36
37
- name: Initialize local database
38
run: pnpm db:init:local
0 commit comments