aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-03-30 22:57:43 -0700
committerDhravya <[email protected]>2024-03-30 22:57:43 -0700
commit51599189cbdf7d4a22450630fda7a8e689475742 (patch)
tree6fbb278bd89d78c1f2f65919d54e053fa815c021 /.github
parentinstall in root dir (diff)
downloadsupermemory-51599189cbdf7d4a22450630fda7a8e689475742.tar.xz
supermemory-51599189cbdf7d4a22450630fda7a8e689475742.zip
use bun for builds
Diffstat (limited to '.github')
-rw-r--r--.github/actions/buildextension/action.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/actions/buildextension/action.yml b/.github/actions/buildextension/action.yml
index c1b07baf..f95818c4 100644
--- a/.github/actions/buildextension/action.yml
+++ b/.github/actions/buildextension/action.yml
@@ -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