From d5fa81792bfabca393ae4d780e648e9577bf36a3 Mon Sep 17 00:00:00 2001 From: Andrei Hasna Date: Thu, 30 Jul 2026 09:45:15 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20hasna/draw=20has=20no=20GitHub=20Actions?= =?UTF-8?q?=20workflow=20AND=20no=20todos=20project=20=E2=80=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI: hasna/draw has no GitHub Actions workflow AND no todos project — create the project, then add a test+typecheck gate X-Factory-Run: run_d27e8e8f5279 X-Factory-Task: 07e47817-c4e7-4fed-b84e-324c29bc4587 --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..a6cdd23 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - run: bun install --frozen-lockfile + - run: bun run typecheck + - run: bun run test