fix: improve layout boundary processing (#4423)

This commit is contained in:
Vben
2024-09-18 22:21:23 +08:00
committed by GitHub
parent 26d43ef822
commit 2c22825546
11 changed files with 287 additions and 201 deletions

View File

@@ -17,7 +17,6 @@ env:
jobs:
test:
name: Test
if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]')
runs-on: ${{ matrix.os }}
strategy:
matrix:
@@ -56,7 +55,6 @@ jobs:
lint:
name: Lint
if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]')
runs-on: ${{ matrix.os }}
strategy:
matrix:
@@ -109,7 +107,6 @@ jobs:
ci-ok:
name: CI OK
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, '[skip ci]') && always()
needs: [test, check, lint]
env:
FAILURE: ${{ contains(join(needs.*.result, ','), 'failure') }}