Skip to content

build(deps): Bump qs from 6.14.0 to 6.14.1 #536

build(deps): Bump qs from 6.14.0 to 6.14.1

build(deps): Bump qs from 6.14.0 to 6.14.1 #536

Workflow file for this run

name: CS-Fix
on:
pull_request:
jobs:
php-cs-fixer:
name: php-cs-fixer
runs-on: ubuntu-22.04
strategy:
matrix:
php-versions: ['8.3']
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: ${{ github.head_ref }}
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer i
- name: Run coding standard formatter
run: composer run cs:fix
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: Apply php-cs-fixer changes