From f0cd6ebf808dc52455bda034e146b74a6ffc20ac Mon Sep 17 00:00:00 2001 From: Chris Atkin Date: Wed, 19 Jun 2024 20:11:29 +0100 Subject: [PATCH] Remove unnecessary optional install argument --- .github/workflows/publish.yml | 2 +- .github/workflows/pull-requests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 545e4b9..4053d95 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 20 - - run: npm ci --include="optional" + - run: npm ci - run: npm test publish-npm: diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 4f2d09d..d9c3721 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -15,6 +15,6 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 20 - - run: npm ci --include="optional" + - run: npm ci - run: npm run lint - run: npm run test