From c4744098d99bafdcb88ba74fb5f206a81c3b2bb3 Mon Sep 17 00:00:00 2001 From: Max Battcher Date: Fri, 17 Oct 2025 23:28:51 -0400 Subject: [PATCH] Add npm update to npm publish workflow --- .github/workflows/npm-publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 8d5f5bd..804dfd4 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -19,6 +19,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + # Ensure npm 11.5.1 or later is installed + - name: Update npm + run: npm install -g npm@latest - run: npm ci - run: npm test - run: npm publish