From 3894838e7e8ff550ec7f1c3678eaed18efee5651 Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Fri, 11 Jul 2025 23:37:26 +0700 Subject: [PATCH] :construction_worker: create ci script for gitea creating build test using gitea runner for first time --- .gitea/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..597459b --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,25 @@ +name: Bun CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build-testing: + runs-on: docker + container: + image: oven/bun:latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install dependencies + run: bun install + + - name: Running lint + run: bun run lint + + - name: Running build + run: bun run build