build(deps): bump actions/checkout from 4.2.2 to 5.0.1 #4
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: Check Pull Request | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| actions: read | |
| checks: write | |
| concurrency: | |
| group: check-pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - name: Set up the project | |
| uses: ./.github/actions/setup | |
| - name: Report analyze | |
| uses: invertase/github-action-dart-analyzer@e981b01a458d0bab71ee5da182e5b26687b7101b # v3.0.0 | |
| with: | |
| fatal-infos: true | |
| - name: Check format | |
| run: melos format --output none --set-exit-if-changed | |
| - name: Check for circular dependencies | |
| run: melos list --cycles | |
| - name: Run test | |
| run: melos run test --no-select |