Fixed Wrong Equality Operator

Too used to strict equality I guess :)
This commit is contained in:
Christopher Allford 2023-11-16 18:29:48 -08:00
parent b0d896c3e3
commit e5eff12f79
2 changed files with 6 additions and 6 deletions

View File

@ -26,14 +26,14 @@ runs:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: 'Setup PHP'
if: ${{ inputs.php-version !== 'false' }}
if: ${{ inputs.php-version != 'false' }}
uses: 'shivammathur/setup-php@a36e1e52ff4a1c9e9c9be31551ee4712a6cb6bd0'
with:
php-version: '${{ inputs.php-version }}'
coverage: 'none'
tools: 'phpcs, sirbrillig/phpcs-changed:2.11.1'
- name: 'Cache Composer Dependencies'
if: ${{ inputs.php-version !== 'false' }}
if: ${{ inputs.php-version != 'false' }}
uses: 'actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84'
with:
path: '~/.cache/composer/files'