Disabled CI Install Filtering

There is currently a bug with `pnpm` that needs fixed first.
This commit is contained in:
Christopher Allford 2023-12-05 15:05:28 -08:00
parent c4ef29c942
commit 9f3d4abaed
1 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,9 @@ runs:
# Boolean inputs aren't parsed into filters so it'll either be "true" or there will be a filter.
if: ${{ inputs.install == 'true' || steps.project-filters.outputs.install != '' }}
shell: 'bash'
run: 'pnpm install ${{ steps.project-filters.outputs.install }}'
run: 'pnpm install'
# `pnpm install` filtering is broken: https://github.com/pnpm/pnpm/issues/6300
# run: 'pnpm install ${{ steps.project-filters.outputs.install }}'
# We want to include an option to build projects using this action so that we can make
# sure that the build cache is always used when building projects.
- name: 'Cache Build Output'