fix: migrate CI from bun to pnpm #54
Reference in New Issue
Block a user
Delete Branch "fix/52-ci-bun-to-pnpm"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Migrate Gitea CI workflow from bun to pnpm + Node 22.
Why
Project already migrated to pnpm, but CI still uses
oven-sh/setup-bun.bun run test:cicallspnpm -r run test:ciunder the hood, which fails because pnpm is not installed.Changes
.gitea/workflows/ci.yml— replacesetup-bunwithsetup-node@v4(Node 22) +corepack enable && pnpm installRef
Closes #52