From 1ab4c018326a9fe80e71ac19f2e175cd5eb231da Mon Sep 17 00:00:00 2001 From: Andrei Hasna Date: Thu, 30 Jul 2026 10:09:38 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20hasna/announce=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/announce has no GitHub Actions workflow — add a test+typecheck gate on pull_request X-Factory-Run: run_7e1db4c60f67 X-Factory-Task: f13d1509-1a8d-40c9-a3e9-7da4b37eed81 --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..bc07568 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + 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 test