From 6c0fa4cf2e9594f0f64c0049c0e658d692c7448f Mon Sep 17 00:00:00 2001 From: hasna-drain Date: Wed, 29 Jul 2026 14:23:12 +0000 Subject: [PATCH 1/2] chore: begin drain OPE17-00009 From 5cee56f80ee6d5b9a542c4fc4db9af1a82f087a5 Mon Sep 17 00:00:00 2001 From: hasna-drain Date: Wed, 29 Jul 2026 14:24:52 +0000 Subject: [PATCH 2/2] ci: add pull request quality gate --- .github/workflows/ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 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..eb4cc8d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: CI + +on: + pull_request: + push: + branches: + - main + +permissions: + contents: read + +jobs: + ci: + 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: Typecheck + run: bun run typecheck + + - name: Build + run: bun run build + + - name: Test + run: bun test