Skip to content

Add tactile press feedback to admin buttons #10494

Add tactile press feedback to admin buttons

Add tactile press feedback to admin buttons #10494

Workflow file for this run

on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
types: [ opened, labeled, synchronize ]
name: Inspections
jobs:
runPHPCSFixerInspection:
if: contains(github.event.pull_request.labels.*.name, 'run analysis')
name: Run PHP CS Fixer inspection
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Install dependencies
run: composer install --dev --prefer-dist --no-progress
- name: PHPCSFixer check
run: ./vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes --verbose