diff --git a/.github/workflows/code-review.yml b/.github/workflows/code-review.yml index e810664..dcd8526 100644 --- a/.github/workflows/code-review.yml +++ b/.github/workflows/code-review.yml @@ -32,4 +32,10 @@ jobs: run: pnpm install - name: Run Code Review - run: pnpm run code-review \ No newline at end of file + run: pnpm run code-review + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} + slug: kin0992/gitignoreio \ No newline at end of file diff --git a/turbo.json b/turbo.json index 00a46cf..8d5544e 100644 --- a/turbo.json +++ b/turbo.json @@ -21,7 +21,7 @@ "outputLogs": "errors-only" }, "code-review": { - "dependsOn": ["lint:check", "typecheck", "test"] + "dependsOn": ["lint:check", "typecheck", "test:coverage"] } } }