Update docs element layout #837
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Laravel Linting with Pint | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- 'dependabot/npm_and_yarn/*' | |
- 'dependabot/composer/*' | |
jobs: | |
phplint: | |
runs-on: "ubuntu-latest" | |
name: Laravel Pint | |
# You may pin to the exact commit or the version. | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: setup php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: dom, curl, libxml, mbstring, zip, fileinfo | |
- name: "Laravel Pint" | |
uses: aglipanci/[email protected] | |
with: | |
preset: laravel | |
verboseMode: true | |
- name: Git Auto Commit | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: PHP Linting (Pint) | |
skip_fetch: true |