diff options
| author | Dhravya <[email protected]> | 2024-03-30 22:57:43 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-03-30 22:57:43 -0700 |
| commit | 51599189cbdf7d4a22450630fda7a8e689475742 (patch) | |
| tree | 6fbb278bd89d78c1f2f65919d54e053fa815c021 /.github | |
| parent | install in root dir (diff) | |
| download | supermemory-51599189cbdf7d4a22450630fda7a8e689475742.tar.xz supermemory-51599189cbdf7d4a22450630fda7a8e689475742.zip | |
use bun for builds
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/buildextension/action.yml | 10 |
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 |