feat: update CORS policies #39
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 checks" | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
php_quality: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: Setup PHP, extensions and composer with shivammathur/setup-php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, ctype, iconv, intl | |
env: | |
update: true | |
- name: Check PHP Version | |
run: php -v | |
- name: "Validate composer.json and composer.lock" | |
run: composer validate --strict | |
- name: "Cache Composer packages" | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: "Install Dependencies" | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist --ignore-platform-reqs | |
- name: "Coding Style validation with ECS" | |
run: vendor/bin/ecs --no-progress-bar | |
- name: "Static Code validation with PHPStan" | |
run: vendor/bin/phpstan analyse --no-progress | |
- name: "Run Pest testsuite" | |
run: ./vendor/bin/pest --no-progress |