From 9099f588c91827acc48fae70a89463077715da15 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Wed, 5 Nov 2025 15:33:43 -0800 Subject: [PATCH] fix(publish): Don't try to globally install npm We should be able to rely on the npm version from the latest LTS being new enough to support trusted publishing. --- .github/workflows/publish.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 458756a..a249b72 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,11 +18,9 @@ jobs: - uses: actions/setup-node@v6 with: + node-version: lts/* registry-url: 'https://registry.npmjs.org' - - name: Install latest npm - run: npm install -g npm@latest - - name: npm install run: npm ci env: