fix(DatePicker2): after entering a customized date format and pressing Enter, the value should not change,closed alibaba-fusion#4896 #499
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 | |
on: [pull_request] | |
jobs: | |
changed: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: ${{ github.event.pull_request.commits }} | |
- name: Get Head Commit Message | |
id: get_head_commit_message | |
run: echo '${{ github.event.pull_request.base.sha }}' > /tmp/pr_base | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run check:changed |