PD-5751 Works only display the first element #2379
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: commit | |
| # run lints even before someone submits a pr | |
| on: | |
| push: | |
| branches: | |
| - '**' # run on any branch | |
| - '!main' | |
| - '!development' | |
| # cancel running job if another commit comes in | |
| concurrency: | |
| group: commit-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/lint.yml |