Skip to content

feat: add umami script #35

feat: add umami script

feat: add umami script #35

Workflow file for this run

name: Laravel Pint
on:
workflow_dispatch:
pull_request:
paths:
- '**.php'
permissions:
contents: write
jobs:
laravel-pint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
check-latest: true
- name: Install NPM dependencies
run: npm install
- name: Run prettier
run: npm run prettier
- name: Fix PHP code style issues
uses: aglipanci/[email protected]
with:
useComposer: true
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: >
chore: styling