From 729d1761f8409e9ca6a158cfb8418e63fe35fea9 Mon Sep 17 00:00:00 2001 From: Zaid-maker <53424436+Zaid-maker@users.noreply.github.com> Date: Tue, 24 Jun 2025 16:14:40 +0500 Subject: [PATCH] feat: add Bun CI workflow for building and testing --- .github/workflows/bun-ci.yml | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/bun-ci.yml diff --git a/.github/workflows/bun-ci.yml b/.github/workflows/bun-ci.yml new file mode 100644 index 0000000..b5b785a --- /dev/null +++ b/.github/workflows/bun-ci.yml @@ -0,0 +1,37 @@ +name: Bun CI + +on: + push: + branches: [main] + paths-ignore: + - "*.md" + pull_request: + branches: [main] + paths-ignore: + - "*.md" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install Bun + uses: oven-sh/setup-bun@v2.0.2 + with: + bun-version: 1.2.2 + + - name: Install dependencies + working-directory: apps/web + run: bun install + + - name: Build + working-directory: apps/web + run: bun run build + + - name: Run tests + working-directory: apps/web + run: echo "No tests implemented yet" + continue-on-error: true