From 040b316b89c118d392ed2306a8d663d9e94d70d0 Mon Sep 17 00:00:00 2001 From: rpdeshaies Date: Wed, 4 Dec 2024 08:56:47 -0500 Subject: [PATCH] feat: ci --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..0bf357c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: + - "**" + +jobs: + build: + runs-on: ubuntu-latest + steps: + # Checkout + - name: Checkout + uses: actions/checkout@v2 + # Use Bun + - name: Use Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: 1.1.38 + # Install + - name: Install + run: bun install + # Build + - name: Build + run: bun run build