From 7b7dc68ac5d75334d888b20ec15552b6babd64ba Mon Sep 17 00:00:00 2001 From: Theo <328805+theodesp@users.noreply.github.com> Date: Wed, 16 Oct 2024 14:12:09 +0100 Subject: [PATCH] chore: include --include=dev in bundle analysis --- .github/workflows/nextjs-bundle-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nextjs-bundle-analysis.yml b/.github/workflows/nextjs-bundle-analysis.yml index f0e50883f..0f51c6a91 100644 --- a/.github/workflows/nextjs-bundle-analysis.yml +++ b/.github/workflows/nextjs-bundle-analysis.yml @@ -40,13 +40,13 @@ jobs: run: npm install -g @next/bundle-analyzer - name: Install dependencies - run: npm ci + run: npm ci --include=dev - name: Build packages run: npm run build - name: Create "faust" cli bin - run: npm ci + run: npm ci --include=dev - name: Create example project .env.local file working-directory: ${{ matrix.next-dir }}