From d04e4595fc67794f6831cb477cd761188b9f9e36 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Thu, 17 Mar 2022 16:01:50 -0700 Subject: [PATCH] move env to global scope --- .github/workflows/ci-test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 10df4f9..928967d 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -3,6 +3,10 @@ name: Module Tests on: [ push ] +env: + CI: true + NODE_OPTIONS: --max-old-space-size=1536 + jobs: ci-test: @@ -32,6 +36,3 @@ jobs: - name: Run test suite run: npm run test - env: - CI: true - NODE_OPTIONS: --max-old-space-size=1536