From e7dfbbf4946db9f7f6392f66f7179629460ed40b Mon Sep 17 00:00:00 2001 From: Krzysztof Cieslak Date: Tue, 31 Mar 2026 17:31:57 +0200 Subject: [PATCH] Add GitHub Actions CI workflow Run lint and build on pushes to main and pull requests. --- .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..620d3e0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + ci: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: oven-sh/setup-bun@v2 + + - name: Install dependencies + run: bun install --frozen-lockfile + + - name: Lint + run: bun run lint + + - name: Typecheck & Build + run: bun run build