Debug Logging

This commit is contained in:
Christopher Allford 2023-11-16 18:45:08 -08:00
parent a41d0a96c8
commit 56c92d39ed
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@ runs:
node-version-file: '.nvmrc' node-version-file: '.nvmrc'
# We only want to use the cache if something is being installed. # We only want to use the cache if something is being installed.
cache: ${{ ( inputs.install == 'true' || steps.project-filters.outputs.install != '' ) && 'pnpm' || '' }} cache: ${{ ( inputs.install == 'true' || steps.project-filters.outputs.install != '' ) && 'pnpm' || '' }}
- name: 'Debug'
shell: 'bash'
run: "echo '${{ ( inputs.install == 'true' || steps.project-filters.outputs.install != '' ) && 'pnpm' || '' }}'"
- name: 'Setup PHP' - name: 'Setup PHP'
if: ${{ inputs.php-version != 'false' }} if: ${{ inputs.php-version != 'false' }}
uses: 'shivammathur/setup-php@a36e1e52ff4a1c9e9c9be31551ee4712a6cb6bd0' uses: 'shivammathur/setup-php@a36e1e52ff4a1c9e9c9be31551ee4712a6cb6bd0'