Do not add products in event if category display mode does not show p… #525
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ExtDN PHPStan | |
| on: [push, pull_request] | |
| jobs: | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Determine composer cache directory" | |
| id: "determine-composer-cache-directory" | |
| run: "echo \"::set-output name=directory::$(composer config cache-dir)\"" | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: "${{ steps.determine-composer-cache-directory.outputs.directory }}" | |
| key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
| - uses: extdn/github-actions-m2/magento-phpstan/8.3@master | |
| with: | |
| composer_name: yireo/magento2-googletagmanager2 | |
| composer_version: 2 | |
| phpstan_level: 2 | |
| magento_pre_install_script: .github/workflows/extdn-phpstan-pre-install.sh |