fix: 修复开启自定义指标层级后, 角头数值文本未对齐 close #2957 #4289
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: 📦 Compressed Size | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
compressed-size: | |
runs-on: macos-latest | |
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 | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
pattern: "./packages/{s2-core,s2-react,s2-vue}/dist/**/*.{js,css}" | |
build-script: "build:umd" | |
clean-script: "clean" |