Skip to content

wip

wip #29

Workflow file for this run

name: Laravel Pint
on:
push:
branches:
- main
jobs:
laravel-pint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/[email protected]
with:
ref: ${{ github.head_ref }}
- name: Setup
uses: ./.github/actions/setup
with:
php-version: '8.3'
php-extensions: 'json, dom, curl, libxml, mbstring'
nova-email: ${{ secrets.NOVA_EMAIL }}
nova-password: ${{ secrets.NOVA_PASSWORD }}
- name: Install Laravel Pint
run: composer global require laravel/pint
- name: Run Pint
run: pint
- name: Push Changes Back to Repo
run: |
git config user.name "gh-actions"
git config user.email "[email protected]"
git add .
git commit -m "Laravel Pint" || exit 0
git push