From 78520b9069dd7236cf26bb35536c776fc33a82c0 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Mon, 11 May 2026 16:59:17 +0530 Subject: [PATCH] feat: add CI workflow for linting and testing using Bun --- .github/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b4ea2f0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + + - name: Install dependencies + run: bun install --frozen-lockfile + + - name: Run linting + run: bun run check-all + + - name: Run tests + run: bun run test