From c9cc4c7fb83350cf4c2d1ca0201af27f1a2bf38e Mon Sep 17 00:00:00 2001 From: Grace Park Date: Fri, 8 May 2026 12:08:25 -0700 Subject: [PATCH 1/3] Simplify npm publish step in workflow Removed npm whoami command from publish workflow. --- .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 4ec5765..09bccfb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,4 @@ jobs: - run: npm version ${TAG_NAME} --git-tag-version=false env: TAG_NAME: ${{ github.event.release.tag_name }} - - run: npm whoami; npm --ignore-scripts publish --provenance - env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} + - run: npm --ignore-scripts publish --provenance From 41d261f525d175556b55c408c0e1340680a3150a Mon Sep 17 00:00:00 2001 From: Grace Park Date: Thu, 14 May 2026 10:13:13 -0700 Subject: [PATCH 2/3] Update publish.yml --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 09bccfb..eeeafdf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,10 +12,10 @@ jobs: publish-npm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ cache: npm - run: npm ci From 35e21e161aa5b2eeac7359f7f7f0a241ec19c240 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Thu, 14 May 2026 10:13:31 -0700 Subject: [PATCH 3/3] Update nodejs.yml --- .github/workflows/nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5e3c3a4..650899f 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -6,11 +6,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: - node-version: '22.x' + node-version: '24.x' - run: npm install - run: npm run build --if-present - run: npm test