feat(select): valueDisplay add label params #773
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 }} | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Start Service | |
run: pnpm run dev & | |
- name: Update api.json | |
run: pnpm run api:download | |
- name: Check Diff | |
run: | | |
IS_DIFF=$(if git status | grep -q "packages/scripts/api.json"; then echo "true"; else echo "false"; fi) | |
echo "IS_DIFF: $IS_DIFF" | |
if [[ $IS_DIFF == 'true' ]]; then | |
git diff packages/scripts/api.json | |
echo "TDesign.db and api.json data inconsistency. Workflow will fail." | |
exit 1 | |
fi |