Skip to content

feat: add example livewire component #4

feat: add example livewire component

feat: add example livewire component #4

Workflow file for this run

name: Code linting
on:
# Run linting on all push events that have committed changes in PHP files
push:
paths:
- '**.php'
# Make it possible to run the workflow manually
workflow_dispatch:
jobs:
phplint:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Run Laravel Pint
uses: aglipanci/laravel-pint-action@2.3.0
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "style: fix code style"