From 8342a63451f2e7cc6b6357a2e39c6f8eed926a80 Mon Sep 17 00:00:00 2001 From: Ivan Matveev Date: Sat, 30 May 2026 21:21:46 +0200 Subject: [PATCH] ci: use latest npm for publishing --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5fe6d67..f15b8da 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,12 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org cache: npm + - run: npm install -g npm@latest + - run: node --version && npm --version - run: npm ci - run: npm run ci