From 40f5b5fbec7fe3ca22c35c087b2eea0b2bbe2595 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:56:54 -0500 Subject: [PATCH] fixup!: wrap `NODE_OPTIONS` value in quotes within `ci.yml` Co-authored-by: Jordan Harband --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34c3955..db68dc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 4.1.0 with: node-version: ${{ matrix.node.version }} - env: NODE_OPTIONS=${{ matrix.node.options }} + env: NODE_OPTIONS="${{ matrix.node.options }}" cache: 'npm' - run: npm ci - run: npm run test:unit