fix: 修复单元格宽度为浮点数时单元格之间有几率出现多余空隙的问题 close #3014 #8086
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: 👨🔬 lint | |
on: [pull_request] | |
concurrency: | |
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: macos-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- uses: actions/checkout@v4 | |
# Python 3.11 和 node-gyp 有兼容问题, 导致无法安装依赖 | |
# https://github.com/slint-ui/slint/commit/a9c48e33502fdebc36c5aa2f4f516c2218424679#diff-944291df2c9c06359d37cc8833d182d705c9e8c3108e7cfe132d61a06e9133dd | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm bootstrap:ci | |
- name: Lint scripts, type, style and docs | |
run: pnpm lint | |
- name: Build | |
run: pnpm build | |
- name: Bundle size limit | |
run: pnpm build:size-limit | |
env: | |
CI: true | |
BUNDLESIZE_GITHUB_TOKEN: ${{ secrets.BUNDLESIZE_GITHUB_TOKEN }} | |
- name: Workflow failed alert | |
if: ${{ failure() }} | |
uses: actions-cool/maintain-one-comment@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
你好, @${{ github.event.pull_request.user.login }} CI 执行失败, 请点击 [Details] 按钮查看, 并根据日志修复 | |
Hello, @${{ github.event.pull_request.user.login }} CI run failed, please click the [Details] button for detailed log information and fix it. | |
<!-- Created by actions-cool/maintain-one-comment --> | |
emojis: 'eyes' | |
body-include: '<!-- Created by actions-cool/maintain-one-comment -->' | |
- name: Workflow failed add label | |
if: ${{ failure() && github.event.pull_request.number != '' }} | |
uses: actions-cool/issues-helper@main | |
with: | |
actions: 'add-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
labels: '🚨 lint failed' | |
- name: Remove failed label | |
if: ${{ success() && github.event.pull_request.number != '' }} | |
uses: actions-cool/issues-helper@main | |
with: | |
actions: 'remove-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
labels: '🚨 lint failed' |