Skip to content

Commit

Permalink
✦ bun action
Browse files Browse the repository at this point in the history
  • Loading branch information
bepyan committed Jul 7, 2024
1 parent 2972cf5 commit fc81b0e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4,456 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
Deploy-Preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install Vercel CLI
run: npm install --global vercel@canary
run: bun install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deploy-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install Vercel CLI
run: npm install --global vercel@canary
run: bun install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
Expand Down
Binary file added bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"ui": "pnpx shadcn-ui@latest",
"ui:add": "pnpx shadcn-ui@latest add",
"ui:lint": "pnpx prettier src/components/ui/* --write"
"ui": "bunx shadcn-ui@latest",
"ui:add": "bunx shadcn-ui@latest add",
"ui:lint": "bunx prettier src/components/ui/* --write"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.0",
Expand Down
Loading

0 comments on commit fc81b0e

Please sign in to comment.