Revert direct push to main - will create proper PR

This commit is contained in:
2026-05-12 22:00:29 +00:00
committed by Hugh Hackman [agent]
parent 4f3e3e8d2c
commit d2f1e497ef
-11
View File
@@ -79,17 +79,6 @@ jobs:
echo "has_package_manager=false" >> $GITHUB_OUTPUT
fi
- name: Validate pnpm lockfile freshness
if: steps.pkg-manager.outputs.manager == 'pnpm'
run: |
if [ -f "pnpm-lock.yaml" ] && grep -q '^overrides:' pnpm-lock.yaml 2>/dev/null; then
echo "Checking pnpm-lock.yaml freshness (overrides detected)"
if pnpm install --frozen-lockfile --dry-run 2>&1 | grep -q "CONFIG_MISMATCH"; then
echo "::error::pnpm-lock.yaml is out of sync with package.json overrides. Run 'pnpm install' to regenerate the lockfile."
exit 1
fi
fi
- name: Setup Node
uses: actions/setup-node@v6
with: