chore: Use Bun instead of yarn as a package manager #53
Workflow file for this run
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: ci-clerk-auth | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'packages/clerk-auth/**' | |
pull_request: | |
branches: ['*'] | |
paths: | |
- 'packages/clerk-auth/**' | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/clerk-auth | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- run: bun install --frozen-lockfile | |
- run: bun run build | |
- run: bun run test |