From 23d92948b89601f0dfb627cc7134b713ee8ab61d Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Thu, 23 Jul 2026 16:48:19 +0800 Subject: [PATCH] ci: defer downstream gates until build --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c3f3be59a..8a1cac0e4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,10 +99,6 @@ jobs: : > "$static_log" pnpm run check:ci:static > >(tee "$static_log") 2>&1 & static_pid=$! - pnpm run check:ci:lint & - lint_pid=$! - pnpm run check:node-compat & - compat_pid=$! until grep -Fq 'run-gates: PASS build ' "$static_log"; do if ! kill -0 "$static_pid" 2>/dev/null; then @@ -116,6 +112,10 @@ jobs: sleep 0.2 done + pnpm run check:ci:lint & + lint_pid=$! + pnpm run check:node-compat & + compat_pid=$! DSH_EXAMPLE_MODE=lib pnpm run test:snapshot & snapshot_pid=$! pnpm run publint &