Skip to content

Commit

Permalink
use bun for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhravya committed Mar 31, 2024
1 parent dab84a6 commit 5159918
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/buildextension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ description: 'Builds the chrome extension into a ZIP'
runs:
using: 'composite'
steps:
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
node-version: 18
bun-version: latest

- name: Install packages
run: npm i --force
run: bun i
shell: bash

- name: Build extension
run: npm run build
run: bun run build
working-directory: apps/extension
shell: bash

Expand Down

0 comments on commit 5159918

Please sign in to comment.