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
11 changes: 8 additions & 3 deletions .github/workflows/publish_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
with:
version: 9.5

- name: Setup Node.js 20
uses: actions/setup-node@v3
- name: Setup Node.js 22
uses: actions/setup-node@v6
with:
node-version: '20.x'
node-version: '22.x'
cache: pnpm
registry-url: 'https://registry.npmjs.org'

Expand All @@ -55,6 +55,11 @@ jobs:
pnpm config set auto-install-peers true
pnpm config set exclude-links-from-lockfile true

- name: Update npm
run: |
npm install -g npm@^11.6
npm --version

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

Expand Down