[READ-ONLY] Mirror of https://github.com/bombshell-dev/automation. GitHub Actions for the Bombshell organization
ci
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): publish workaround npm/cli#9151 (#19)

Node 22.22.2 ships broken npm missing promise-retry, preventing upgrade
to npm. See: https://github.com/npm/cli/issues/9151
related to:
https://github.com/bombshell-dev/tab/actions/runs/24902639988/job/72924202908

authored by

AmirHossein Sakhravi and committed by
GitHub
(Apr 27, 2026, 12:38 PM +0330) 88a2266b 67739e4c

+5 -1
+5 -1
.github/workflows/publish.yml
··· 48 48 cache: "pnpm" 49 49 50 50 - name: Update NPM 51 - run: npm install -g npm@latest 51 + # WORKAROUND: The latest version of npm breaks itself whilst installing itself 52 + # see https://github.com/npm/cli/issues/9151 53 + run: | 54 + npm install -g npm@~11.10.0 55 + npm install -g npm@latest 52 56 53 57 - name: Install dependencies 54 58 run: pnpm install