Skip to content

Finish Laravel integration #17

Finish Laravel integration

Finish Laravel integration #17

Workflow file for this run

name: Prettier
on: [push, pull_request]
jobs:
prettier:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: creyD/[email protected]
with:
prettier_options: --write .
prettier_plugins: '@prettier/plugin-php'
only_changed: true
commit_message: 'Run Prettier'