Skip to content

Build(deps-dev): Bump express from 4.18.2 to 4.19.2 #299

Build(deps-dev): Bump express from 4.18.2 to 4.19.2

Build(deps-dev): Bump express from 4.18.2 to 4.19.2 #299

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.2']
steps:
- name: Checkout
uses: actions/checkout@v4
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@v4
with:
commit_message: Apply php-cs-fixer changes