[6.x] Rename Add Block back to Add Set in replicators
#3416
Workflow file for this run
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: Lint code style issues | |
| on: | |
| pull_request: | |
| jobs: | |
| lint-code-styling: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v46 | |
| with: | |
| files: | | |
| **.php | |
| - name: Check PHP code style issues | |
| if: steps.changed-files.outputs.any_modified == 'true' | |
| uses: aglipanci/laravel-pint-action@v2 | |
| with: | |
| testMode: true | |
| verboseMode: true | |
| pintVersion: 1.16.0 |