fix: use admin
translation domain instead of messages
for brick `…
#105
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: Quality Assurance | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
qa: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: PHP Setup | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- name: Validate composer.json | |
run: composer validate --strict | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Check CS-Fixer | |
run: composer cs:check | |
- name: Check PHPStan | |
run: composer phpstan |