这是indexloc提供的服务,不要输入任何密码
Skip to content

build(deps): bump actions/checkout from 4.2.2 to 5.0.1 #4

build(deps): bump actions/checkout from 4.2.2 to 5.0.1

build(deps): bump actions/checkout from 4.2.2 to 5.0.1 #4

Workflow file for this run

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