From b12992a752e4dea471fea604266a63da4f0ebef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Legan=C3=A9s-Combarro=20=27piranna?= Date: Wed, 11 Oct 2023 14:58:17 +0400 Subject: [PATCH] Explicit quotes for `NODE_OPTIONS` environment variable in workflow --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f69e9ee..d55c379 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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