fix(Grid): Col作为子组件在Row组件下,style属性不生效 #478
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 |