Skip to content
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

[semver:patch] unset NODE_OPTIONS to prevent exit 4 #120

Merged
merged 1 commit into from
Nov 10, 2021
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.2.1
**Fixes
- #120: fix: unset NODE_OPTIONS to prevent exit 4

## 3.2.0
**Features**
- #117: feat: Add alpine build support
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# codecov-circleci-orb

## Latest version 3.2.0
## Latest version 3.2.1

[![codecov.io](https://codecov.io/github/codecov/codecov-circleci-orb/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-circleci-orb)
[![Circle CI](https://circleci.com/gh/codecov/codecov-circleci-orb.png?style=badge)](https://circleci.com/gh/codecov/codecov-circleci-orb)
3 changes: 2 additions & 1 deletion src/@orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ commands:
- run:
name: Upload Coverage Results
command: |
unset $NODE_OPTIONS # See https://github.com/codecov/uploader/issues/475
source $BASH_ENV
chmod +x $filename
[ -n "<< parameters.file >>" ] && set - "${@}" "-f" "<< parameters.file >>"
[ -n "<< parameters.xtra_args >>" ] && set - "${@}" "<< parameters.xtra_args >>"
./$filename \
-Q "codecov-circleci-orb-3.1.0" \
-Q "codecov-circleci-orb-3.2.1" \
-t "${<< parameters.token >>}" \
-n "<< parameters.upload_name >>" \
-F "<< parameters.flags >>" \
Expand Down