chore: upgrade kkrpc to version 0.1.1 and bump tauri-api-adapter to 0… #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JSR Publish | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
cache: 'pnpm' | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: 1.1.18 | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm test | |
- name: Publish package | |
working-directory: packages/tauri-api-adapter | |
run: npx jsr publish --allow-slow-types |