Skip to content

Commit

Permalink
don't redirect stderr to /dev/null
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jul 3, 2024
1 parent a41538a commit 0ed14fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ jobs:
if test "${pkg_type}" = "module"; then
# Test importing as ESModule
test_import_esm;
elif "$m" = umd; then
elif test "$m" = umd; then
# Test importing UMD as both CommonJS and ESM
test_import_cjs;
test_import_esm;
else
# Test importing others as both CommonJS and ESM, but allow ESM to fail
test_import_cjs;
test_import_esm 2>/dev/null || true;
test_import_esm || true;
fi
set +x;
Expand Down

0 comments on commit 0ed14fd

Please sign in to comment.