From 0cad563cdd27c99643d8ca0817d5b6d28805c556 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Tue, 14 Jan 2025 03:42:53 -0500 Subject: [PATCH] ci: update npm publish workflow to use Node.js 22 and set registry URL --- .github/workflows/npm-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 45d612f..4c5c51f 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -13,6 +13,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + registry-url: https://registry.npmjs.org/ - uses: pnpm/action-setup@v2 with: version: latest