From 0e058001ac0942d7bb8c77c2979819b19d43feab Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 22 Jul 2025 16:41:56 -0700 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..0110479 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: ๐Ÿ“ฅ Checkout code + uses: actions/checkout@v4 + + - name: ๐Ÿ” Setup Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + + - name: ๐Ÿ“ฆ Install dependencies + run: bun install + + - name: ๐Ÿงช Run CI tests + run: bun ci