From d99cad9e65fa9d85ecdc3085a9a500f10d0b39c7 Mon Sep 17 00:00:00 2001 From: Andrei Hasna Date: Thu, 30 Jul 2026 09:56:50 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20hasna/terminal=20has=20no=20GitHub=20Acti?= =?UTF-8?q?ons=20workflow=20=E2=80=94=20add=20a=20test+typecheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI: hasna/terminal has no GitHub Actions workflow — add a test+typecheck gate on pull_request X-Factory-Run: run_32384bac91f7 X-Factory-Task: bb193c89-7c7b-42b7-a699-2de787f116f3 --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..ef27164 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: CI + +on: + pull_request: + +permissions: + contents: read + +jobs: + test: + name: Test and typecheck + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v4 + - name: Set up Bun + uses: oven-sh/setup-bun@v2 + - name: Install dependencies + run: bun install --frozen-lockfile + - name: Run tests + run: bun test + - name: Typecheck + run: bunx tsc --noEmit