Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,21 @@ jobs:
with:
version: 10.12.4

- name: Use Node.js 22
- name: Use Node.js 22.14
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 22.14.0
cache: pnpm
registry-url: https://registry.npmjs.org

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Upgrade npm for trusted publishing
run: npm install -g npm@latest

- name: Print runtime versions
run: node -v && npm -v

- name: Publish current main release
run: pnpm release
Loading