From cbf9cc294d241ef0898920a9ef4a2ddd7a932f1c Mon Sep 17 00:00:00 2001 From: Ian James <1732331+injms@users.noreply.github.com> Date: Mon, 28 Oct 2024 01:28:08 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Update=20install=20to=20include?= =?UTF-8?q?=20optional=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f872cad..aa0195e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,5 +12,5 @@ jobs: with: node-version-file: ".nvmrc" cache: npm - - run: npm ci + - run: npm ci --include=optional - run: ELEVENTY_PLACEHOLDER=true npm run build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a033397..1b63771 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,6 @@ jobs: with: node-version-file: ".nvmrc" cache: npm - - run: npm ci + - run: npm ci --include=optional - run: ELEVENTY_PLACEHOLDER=true npm run build # Build using placeholder content - run: npm run test:runner # Run test set for running in this workflow