From ff367383925d659407479a615374443fd19948dd Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Tue, 4 Oct 2022 21:16:06 -0700 Subject: [PATCH] Add a --bundle=false variant to CI --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf6cb012289dd..44836a0739579 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,11 @@ jobs: - "*" - lts/* - lts/-1 + bundle: + - "true" + include: + - node-version: "*" + bundle: "false" steps: - uses: actions/checkout@v3 @@ -32,7 +37,7 @@ jobs: - run: npm ci - name: Tests - run: npm test + run: npm run test -- --bundle=${{ matrix.bundle }} lint: runs-on: ubuntu-latest