chore(deps): update plugin org.jetbrains.kotlin.android to v2.3.10 #4614
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: Conventional commits | |
| on: | |
| pull_request: | |
| jobs: | |
| conventional-commits: | |
| name: Conventional commits | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install dart | |
| uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c # v1 | |
| with: | |
| sdk: 3.7 | |
| - name: Install commitlint_cli | |
| run: dart pub global activate commitlint_cli 0.8.1 | |
| - name: Lint conventional commits | |
| run: dart pub global run commitlint_cli --from=${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to=${{ github.event.pull_request.head.sha }} |