Skip to content

Commit 3f61b13

Browse files
committed
chore: update GitHub workflow actions
1 parent 36b28f9 commit 3f61b13

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: '24'
22+
cache: pnpm
2223

2324
- name: Install dependencies
2425
run: 'pnpm install --frozen-lockfile'

.github/workflows/publish.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@ jobs:
1717
permissions:
1818
id-token: write
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: pnpm/action-setup@v4
22-
- uses: actions/setup-node@v4
22+
- uses: actions/setup-node@v6
2323
with:
24-
node-version: 22
24+
node-version: 24
25+
cache: pnpm
2526
- name: Install dependencies
2627
run: pnpm install --frozen-lockfile
27-
- name: Build
28-
run: pnpm build
2928
- name: Publish
3029
shell: bash
31-
run: pnpm publish --provenance --no-git-checks
30+
run: pnpm build && npm publish --access public --provenance

0 commit comments

Comments
 (0)