chore: add mod.ts file and update GitHub Actions workflow to use Node.js and pnpm

This commit is contained in:
Huakun Shen 2025-01-08 04:05:50 -05:00
parent aba925da49
commit 2febfab03e
No known key found for this signature in database
2 changed files with 15 additions and 3 deletions

View File

@ -14,10 +14,22 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies - name: Install dependencies
run: bun install run: pnpm install
- name: Build - name: Build
run: bun run build run: pnpm build
- name: Publish package - name: Publish package
run: npx jsr publish run: npx jsr publish

0
mod.ts Normal file
View File