Skip to content

Commit

Permalink
Explicit quotes for NODE_OPTIONS environment variable in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
piranna committed Oct 11, 2023
1 parent 03e6d95 commit b12992a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
--test-reporter-destination=stderr
--test-reporter=@mafalda-sfu/test-reporter-json
--test-reporter-destination=coverage.json
run: npm test
run: |
NODE_OPTIONS="$NODE_OPTIONS" npm test
test -f coverage.json # Ensure coverage.json has been created
# Docs
- name: Generate docs
Expand Down

0 comments on commit b12992a

Please sign in to comment.