[BUGFIX] Fix overwriting key page.headerData.31337.40.content.20 #121
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: 'Code Style' | |
on: [push, pull_request] | |
jobs: | |
lint-php: | |
name: PHP Code Style | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
- name: Lint code | |
run: | | |
composer install --no-scripts --no-plugins --ignore-platform-reqs --no-progress -n --ansi | |
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --dry-run | |
lint-frontend: | |
name: Frontend Code Style | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Lint code | |
run: | | |
cd Build | |
yarn install --frozen-lockfile --prefer-offline | |
node_modules/.bin/prettier --check . |