From a1c6320a822013e4d14e07290ca8fbd4e190d33c Mon Sep 17 00:00:00 2001 From: kitten Date: Thu, 13 Aug 2026 19:41:53 +0200 Subject: [PATCH] Add .github/workflows/ci.yml --- .github/workflows/ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..1f511dd --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,30 @@ +name: ci + +on: push + +jobs: + ci: + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [debian-trixie] + node: [22] + + steps: + - name: Checkout + uses: actions/checkout@v7 + + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version: latest + + - name: Install dependencies + run: bun install + + - name: Lint + run: bun run lint + + - name: Typecheck + run: bun run typecheck \ No newline at end of file