Add Resource Connection to __construct so that the connection table name comes through with any prefixes #318
Workflow file for this run
This file contains 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: Backend Static Review | |
on: [push, pull_request] | |
jobs: | |
phpcs: | |
name: M2 Code Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: extdn/github-actions-m2/magento-coding-standard/8.1@master | |
with: | |
phpcs_severity: 10 | |
phpcs_report: full | |
args: "--colors" | |
phpmd: | |
name: M2 Mess Detection | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: extdn/github-actions-m2/magento-mess-detector@master | |
phpstan: | |
name: M2 PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: extdn/github-actions-m2/magento-phpstan@master | |
with: | |
composer_name: snowdog/module-menu |