From ec9b388bfdeae0236632e047308c23c0d11d7578 Mon Sep 17 00:00:00 2001 From: bailey Date: Mon, 15 Sep 2025 06:51:36 -0400 Subject: [PATCH 1/2] fix release action --- .github/actions/setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index dccc33a..6d23e31 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -10,5 +10,6 @@ runs: registry-url: 'https://registry.npmjs.org' - run: npm install -g npm@latest shell: bash - - run: npm clean-install + # TODO(NODE-7058): use npm CI here once we have a package-lock.json again + - run: npm install shell: bash From 61d269f73acfe9261aaac34bb1ac1602fc88d3f6 Mon Sep 17 00:00:00 2001 From: bailey Date: Mon, 15 Sep 2025 07:00:13 -0400 Subject: [PATCH 2/2] ignore scripts --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 6d23e31..7b7b049 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -11,5 +11,5 @@ runs: - run: npm install -g npm@latest shell: bash # TODO(NODE-7058): use npm CI here once we have a package-lock.json again - - run: npm install + - run: npm install --ignore-scripts shell: bash