From 0e1c1d0e6cb7e939e1ac6ae3627d36044591bf82 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Nov 2025 12:19:25 +0000 Subject: [PATCH 1/2] Initial plan From 7c42c558de8f563b4805657a99d23a2f666f0683 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Nov 2025 12:24:13 +0000 Subject: [PATCH 2/2] Add CI workflow for packages/big-daddy tests Co-authored-by: Ankcorn <7361428+Ankcorn@users.noreply.github.com> --- .github/workflows/ci.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 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..0647947 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test-big-daddy: + runs-on: ubuntu-latest + permissions: + contents: read + defaults: + run: + working-directory: packages/big-daddy + steps: + - uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install + working-directory: ${{ github.workspace }} + + - name: Run tests + run: pnpm test