Uh oh!
There was an error while loading. Please reload this page.
feat: add process exit handler - #1212
Conversation
View your CI Pipeline Execution ↗ for commit ad85170
☁️ Nx Cloud last updated this comment at |
@code-pushup/ci@code-pushup/cli@code-pushup/core@code-pushup/create-cli@code-pushup/models@code-pushup/nx-plugin@code-pushup/axe-plugin@code-pushup/coverage-plugin@code-pushup/eslint-plugin@code-pushup/js-packages-plugin@code-pushup/jsdocs-plugin@code-pushup/lighthouse-plugin@code-pushup/typescript-plugin@code-pushup/utilscommit: |
Code PushUp🤨 Code PushUp report has both improvements and regressions – compared current commit efc4fe5 with previous commit 7d3681c. 🕵️ See full comparison in Code PushUp portal 🔍 🏷️ Categories👍 1 group improved, 👎 2 groups regressed, 👍 2 audits improved, 👎 8 audits regressed, 15 audits changed without impacting score🗃️ Groups
31 other groups are unchanged. 🛡️ Audits
654 other audits are unchanged. |
Code PushUp🤨 Code PushUp report has both improvements and regressions – compared current commit efc4fe5 with previous commit 7d3681c. 💼 Project |
| 🏷️ Category | ⭐ Previous score | ⭐ Current score | 🔄 Score change |
|---|---|---|---|
| Documentation | 🔴 36 | 🔴 36 | |
| Code coverage | 🟢 94 | 🟢 94 |
4 other categories are unchanged.
👎 2 groups regressed, 👍 2 audits improved, 👎 4 audits regressed, 1 audit changed without impacting score
🗃️ Groups
| 🔌 Plugin | 🗃️ Group | ⭐ Previous score | ⭐ Current score | 🔄 Score change |
|---|---|---|---|---|
| JSDocs coverage | Documentation coverage | 🔴 36 | 🔴 36 | |
| Code coverage | Code coverage metrics | 🟢 94 | 🟢 94 |
13 other groups are unchanged.
🛡️ Audits
| 🔌 Plugin | 🛡️ Audit | 📏 Previous value | 📏 Current value | 🔄 Value change |
|---|---|---|---|---|
| JSDocs coverage | Types coverage | 🟥 59 undocumented types | 🟥 64 undocumented types | |
| Code coverage | Branch coverage | 🟩 91.8 % | 🟩 91.6 % | |
| JSDocs coverage | Variables coverage | 🟥 43 undocumented variables | 🟥 47 undocumented variables | |
| Code coverage | Line coverage | 🟩 93.8 % | 🟩 93.9 % | |
| Code coverage | Function coverage | 🟩 95.8 % | 🟩 95.9 % | |
| JSDocs coverage | Functions coverage | 🟥 246 undocumented functions | 🟥 247 undocumented functions | |
| JSDocs coverage | Properties coverage | 🟥 24 undocumented properties | 🟥 23 undocumented properties |
437 other audits are unchanged.
13 other projects are unchanged.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
BioPhoton
commented
Jan 12, 2026
I will add int tests now that i examined the logger code.☝️ |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Hanna Skryl <80118140+hanna-skryl@users.noreply.github.com>
Uh oh!
There was an error while loading. Please reload this page.
| export const SIGNAL_EXIT_CODES = (): Record<SignalName, number> => { | ||
| const isWindowsRuntime = os.platform() === 'win32'; | ||
| return { | ||
| SIGINT: isWindowsRuntime ? SIGINT_CODE : unixSignalExitCode(SIGINT_CODE), | ||
| SIGTERM: unixSignalExitCode(SIGTERM_CODE), | ||
| SIGQUIT: unixSignalExitCode(SIGQUIT_CODE), | ||
| }; | ||
| }; |
There was a problem hiding this comment.
related to #1197
This PR includes: