dev: Rename JS forms controllers TicketEditor and NewAuthorizationForm #661
This file contains 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: Linters | |
on: | |
push: | |
branches: | |
- main | |
- 'feat/**' | |
pull_request: | |
branches: | |
- main | |
- 'feat/**' | |
env: | |
NO_DOCKER: true | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-22.04] | |
php-versions: ['8.1', '8.2'] | |
name: Lint PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup the CI | |
uses: ./.github/actions/setup | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Run the linters | |
run: make lint |