From 2e9ea12e8fcbf09c7203e99afc06da6b22c51519 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Tue, 21 Jul 2026 02:28:50 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci:=20added=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..97a3ede --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + + - run: bun install --frozen-lockfile + + - run: bun run typecheck + + - run: bun run lint + + - run: bun run format