From ce4beb5bd3ccbd9c49afa95cf5c2b3222f20bc92 Mon Sep 17 00:00:00 2001 From: "v.snigerev" Date: Thu, 7 May 2026 20:57:33 +0300 Subject: [PATCH] ci(publish): use npx to run latest npm CLI (avoid global install conflict) --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 00d17e6..fdb3f54 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,5 +23,4 @@ jobs: - run: pnpm typecheck - run: pnpm test - run: pnpm build - - run: npm install -g npm@latest - - run: npm publish --provenance --access public + - run: npx --yes npm@latest publish --provenance --access public