Skip to content

Commit

Permalink
ci: add bun workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Jan 9, 2025
1 parent 39fe9f1 commit c2095f1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-client-bun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build Client App

on:
push:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
bun-version: [latest]
defaults:
run:
working-directory: ./apps/client
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
env:
VITE_GROWTH_BOOK_KEY: ${{ secrets.VITE_GROWTH_BOOK_KEY }}
- name: Upload
uses: actions/upload-artifact@v4
with:
name: client-build_${{ matrix.bun-version }}
path: apps/client/dist/

0 comments on commit c2095f1

Please sign in to comment.