Skip to content

Compile Assets

Compile Assets #104

Workflow file for this run

name: PHP Linting (Pint)
on: [push, pull_request]
jobs:
phplint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Composer Install
run: composer install --no-interaction --ignore-platform-reqs
- name: Run Laravel Pint
run: composer format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: PHP Linting (Pint) - Fix styling
skip_fetch: true