ci(checkDB): 检查失败发送留言 #98
Workflow file for this run
This file contains 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 DB | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize, reopened, closed] | |
jobs: | |
check-db: | |
runs-on: ubuntu-latest | |
if: > | |
github.event_name == 'pull_request' && | |
github.event.pull_request.merged == false | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Start Service | |
run: npm run dev & | |
- name: Update api.json | |
run: npm run api:download | |
- name: Check Diff | |
id: check_diff | |
run: | | |
echo "IS_DIFF=$(if git status | grep -q "packages/scripts/api.json"; then echo "true"; else echo "false"; fi)" >> $GITHUB_OUTPUT | |
- name: Comment | |
if: steps.check_diff.outputs.IS_DIFF=='true' | |
uses: actions-cool/maintain-one-comment@v2.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
`TDesign.db`和`api.json`数据不一致,请执行`npm run api:download`。 | |
- name: Error | |
if: steps.check_diff.outputs.IS_DIFF=='true' | |
run: | | |
git diff packages/scripts/api.json | |
exit 1 |