From 6eb08cc796bc3868049967e8052de7b7faf9758a Mon Sep 17 00:00:00 2001 From: Paul Robert Lloyd Date: Sat, 9 Dec 2023 01:18:52 +0000 Subject: [PATCH] Use npm i in deploy workflow --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 961ffebe..86e63544 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,7 +28,9 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v3 - name: Install dependencies - run: npm ci + # Can’t use `npm ci` due to https://github.com/npm/cli/issues/4828 + run: | + npm i --package-lock=false - name: Build with Eleventy run: npm run-script build - name: Upload artifact