From b58507e4b0dd1f9e379b988b29a8d416ae78ac8c Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Tue, 28 Jul 2026 16:55:17 +0200 Subject: [PATCH] fix(ci): gate changes to install patching script --- .github/ci-paths.yml | 1 + scripts/ci-workflow.test.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/ci-paths.yml b/.github/ci-paths.yml index 36435668a..bdfabd3f4 100644 --- a/.github/ci-paths.yml +++ b/.github/ci-paths.yml @@ -11,6 +11,7 @@ workspace: - "package-lock.json" - "patches/**" - "scripts/npm-retry.mjs" + - "scripts/postinstall-patches.mjs" - "tsconfig.json" - "tsconfig.base.json" diff --git a/scripts/ci-workflow.test.mjs b/scripts/ci-workflow.test.mjs index 6d6a0ecc4..5c11f06bf 100644 --- a/scripts/ci-workflow.test.mjs +++ b/scripts/ci-workflow.test.mjs @@ -137,6 +137,7 @@ test("root dependency and CI infrastructure changes run every contract", () => { "package-lock.json", ".github/ci-paths.yml", "scripts/npm-retry.mjs", + "scripts/postinstall-patches.mjs", ]) { assert.deepEqual(affectedContracts(filters, changedPath), allContracts, changedPath); }