chore(deps): bump drift from 2.33.0 to 2.34.0 #52
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 Lint CI | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| types: [opened, synchronize] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.44.1" | |
| channel: "stable" | |
| - run: flutter --version | |
| - name: Install dependencies | |
| run: flutter pub get | |
| - name: Validate PR Commits | |
| run: VERBOSE=true dart run commitlint_cli --from=${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to=${{ github.event.pull_request.head.sha }} --config commitlint.yaml | |