chore: configure external sync dry-run #1211
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 of pull request | |
| # 这里业务方根据需求设置 | |
| on: | |
| pull_request: | |
| branches: ['develop', 'dev/**'] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js 24.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.x | |
| cache: 'npm' | |
| cache-dependency-path: './common/config/rush/pnpm-lock.yaml' | |
| - uses: xile611/pr-type-check@main | |
| with: | |
| pull_request_body: | | |
| ${{ github.event.pull_request.body }} | |
| pull_request_head: ${{ github.event.pull_request.head.ref }} |