Skip to content

2.3.0

2.3.0 #7

Workflow file for this run

name: Code Style
on: [pull_request]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Install NPM dependencies
run: npm ci
- name: Install Composer dependencies
run: composer install
- name: Run Prettier
run: npm run format
- name: Run Pint
run: ./vendor/bin/pint
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply formatting changes