Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
- run: npm run lint
- run: npm run typecheck
- run: npm test
- run: npm run test:coverage

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: This adds a second full test run in CI. test:coverage already runs the suite, so running npm test first makes the workflow slower and increases flaky-failure risk.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/ci.yml, line 29:

<comment>This adds a second full test run in CI. `test:coverage` already runs the suite, so running `npm test` first makes the workflow slower and increases flaky-failure risk.</comment>

<file context>
@@ -26,6 +26,7 @@ jobs:
       - run: npm run lint
       - run: npm run typecheck
       - run: npm test
+      - run: npm run test:coverage
       - name: Upload coverage reports to Codecov
         uses: codecov/codecov-action@v5
</file context>

- name: Upload coverage reports to Codecov
Comment thread
cubic-dev-ai[bot] marked this conversation as resolved.
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: OMOPHub/omophub-node

integration:
# Only run on push or manual dispatch *and* only on main/develop.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading