From 6738d5b657d11e106b2ee1480a89a03c0ba0fef8 Mon Sep 17 00:00:00 2001 From: Bankk <106103625+BankkRoll@users.noreply.github.com> Date: Fri, 5 Dec 2025 22:39:58 -0500 Subject: [PATCH 1/2] fix: Security updates for CVE-2025-55182 and CVE-2025-66478 - next: 15.2.4 -> 15.2.6 (CVE-2025-66478) - react: ^19 -> 19.0.1 (CVE-2025-55182) - react-dom: ^19 -> 19.0.1 (CVE-2025-55182) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 86b97ba..8f2c0aa 100644 --- a/package.json +++ b/package.json @@ -42,4 +42,4 @@ "ts-node": "^10.9.2", "typescript": "^5" } -} +} \ No newline at end of file From 4c8d0d80563dce7113d66b37f79dfca0f4d0c167 Mon Sep 17 00:00:00 2001 From: Bankk <106103625+BankkRoll@users.noreply.github.com> Date: Fri, 5 Dec 2025 22:39:58 -0500 Subject: [PATCH 2/2] chore: Add CI workflow for automated testing and lock file updates --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..d4c9563 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Run tests + run: pnpm test + + - name: Run build + run: pnpm build