Update return type for getIcon method to nullable string #64
This file contains hidden or 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: PHP Linting (Pint) | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/npm_and_yarn/*' | |
| jobs: | |
| phplint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 2 | |
| - name: "laravel-pint" | |
| uses: aglipanci/laravel-pint-action@0.1.0 | |
| with: | |
| preset: laravel | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| commit_message: PHP Linting (Pint) | |
| skip_fetch: true |