-
Notifications
You must be signed in to change notification settings - Fork 450
ci: Add test step in Deno #1109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1109 +/- ##
=======================================
Coverage 99.40% 99.40%
=======================================
Files 405 405
Lines 3541 3541
Branches 1048 1048
=======================================
Hits 3520 3520
Misses 21 21 🚀 New features to boost your workflow:
|
src/predicate/isNode.ts
Outdated
@@ -21,5 +21,5 @@ declare let process: | |||
* } | |||
*/ | |||
export function isNode(): boolean { | |||
return typeof process !== 'undefined' && process?.versions?.node != null; | |||
return process?.versions?.node != null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't this cause a reference error if the global process object is unavailable?
No description provided.