From c2ce58303f70a763fe7f202f4b22e57b511ff583 Mon Sep 17 00:00:00 2001 From: mudaafi Date: Fri, 28 Aug 2026 00:43:41 +0800 Subject: [PATCH 1/2] fix breaking compat tests --- .github/workflows/react-compat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/react-compat.yml b/.github/workflows/react-compat.yml index 0e2b425..117a591 100644 --- a/.github/workflows/react-compat.yml +++ b/.github/workflows/react-compat.yml @@ -21,7 +21,7 @@ jobs: with: node-version: "22.18.0" - name: Install library deps - run: npm ci + run: npm i - name: Build library run: npm run compile - name: Pack library From 1e1232b748fdbaf562220e0768bad67af5bba677 Mon Sep 17 00:00:00 2001 From: mudaafi Date: Fri, 28 Aug 2026 01:01:06 +0800 Subject: [PATCH 2/2] ignore package-lock to allow different react versions --- .github/workflows/react-compat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/react-compat.yml b/.github/workflows/react-compat.yml index 117a591..4350a4e 100644 --- a/.github/workflows/react-compat.yml +++ b/.github/workflows/react-compat.yml @@ -21,7 +21,7 @@ jobs: with: node-version: "22.18.0" - name: Install library deps - run: npm i + run: npm i --no-audit --no-fund --package-lock=false - name: Build library run: npm run compile - name: Pack library