Skip to content

Commit

Permalink
fix: install base dependencies when running changesets (#15551)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikburt authored Dec 6, 2024
1 parent 4a0e8f0 commit 125d98c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,16 @@ jobs:
- name: Setup node
uses: ./.github/actions/setup-nodejs
if: ${{ steps.files-changed.outputs.contracts-changeset == 'true' }}


- name: Install base dependencies
if: ${{ steps.files-changed.outputs.contracts-changeset == 'true' }}
run: pnpm i

- name: Validate changeset files
if: ${{ steps.files-changed.outputs.contracts-changeset == 'true' }}
working-directory: contracts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pnpm changeset version
Expand Down

0 comments on commit 125d98c

Please sign in to comment.