From 688e337893ea9d54bacd9ad03e296aa1e6d9833d Mon Sep 17 00:00:00 2001 From: Damian Jachyra <44927998+damianjachyra@users.noreply.github.com> Date: Fri, 12 Sep 2025 11:22:59 -0400 Subject: [PATCH] fix: use --frozen-lockfile in CI to prevent yarn.lock modifications This prevents the auto shipit command from failing due to uncommitted changes in yarn.lock that occur when yarn install modifies the lock file in CI. --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b6c1d7c..d8a8f25 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,13 +24,13 @@ jobs: cache: 'yarn' - run: | yarn -v - yarn + yarn install --frozen-lockfile - name: Create Release env: GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | - yarn + yarn install --frozen-lockfile yarn build yarn auto shipit