From 8522b1c69eac8d055097f81193a636fc516fd6c3 Mon Sep 17 00:00:00 2001 From: Ronald Veth Date: Thu, 9 Apr 2026 10:21:27 +0200 Subject: [PATCH] Removes redundant npm upgrade in release workflow Simplifies the dependency installation step by removing the explicit npm upgrade command. The npm version bundled with the Node.js setup action is sufficient for running the CI process, eliminating unnecessary installation time and potential version inconsistencies. --- .github/workflows/release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 65364b6..254c0d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,9 +29,7 @@ jobs: registry-url: "https://registry.npmjs.org" - name: Install dependencies - run: | - npm install -g npm@latest - npm ci + run: npm ci - name: Build run: npm run build