fix: 修复分组汇总时,按汇总排序获取排序数据为空 #6996
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: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
# 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' | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- name: Lint scripts, type, style and docs | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Bundle size | |
run: yarn bundle:size | |
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' |