Disabled CI Install Filtering
There is currently a bug with `pnpm` that needs fixed first.
This commit is contained in:
parent
c4ef29c942
commit
9f3d4abaed
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue