Skip to content

Commit

Permalink
Ensure test dependencies are built when setting up CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwilliams committed Dec 11, 2024
1 parent dee32d2 commit e8c02dc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/actions/setup-and-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ runs:
if: ${{ inputs.install-dependencies == 'true' }}
run: pnpm install
shell: bash
working-directory: ${{ inputs.working-directory }}/packages/inngest
working-directory: ${{ inputs.working-directory }}

- name: Build test dependencies
if: ${{ inputs.install-dependencies == 'true' }}
run: pnpm run build
shell: bash
working-directory: ${{ inputs.working-directory }}/packages/test

- name: Build
if: ${{ inputs.build == 'true' }}
Expand Down

0 comments on commit e8c02dc

Please sign in to comment.