Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bumpVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
echo "new_version=$NEW_VERSION" >> "$GITHUB_OUTPUT"
echo "Branch will be $NEW_VERSION"

- name: Install (lockfile refresh if needed)
run: npm install --package-lock-only
- name: Install dependencies
run: npm install --legacy-peer-deps

- name: Generate documentation
run: npm run docgen
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Verify generated documentation is committed
run: |
# Ensure we have the latest main branch reference locally to compare against
git fetch origin main:main
git fetch origin main

# Check if package.json version changed compared to main branch
if git diff main package.json | grep -q '"version"'; then
if git diff origin/main package.json | grep -q '"version"'; then
echo "Package version was updated"

# Regenerate documentation to verify it's current
Expand Down
Loading