From 98b822979ef6b80c3bb8784e48f206fdb4d805b5 Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Thu, 2 Apr 2026 12:05:58 +0100 Subject: [PATCH] Fix typo: replace --ignore-script with --ignore-scripts --ignore-script is not a valid npm flag. The correct flag is --ignore-scripts (plural), as documented in the npm CLI docs: https://docs.npmjs.com/cli/v10/commands/npm-install#ignore-scripts --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a0a596..a97deba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: registry-url: 'https://npm.pkg.github.com' - name: Install # Skip post-install to avoid malicious scripts stealing PAT - run: npm install --ignore-script + run: npm install --ignore-scripts env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Post-install