From f6b6976bc09f1858ebaa2034d5121d73d90a6e75 Mon Sep 17 00:00:00 2001 From: m1ngsama Date: Wed, 22 Apr 2026 14:33:07 +0800 Subject: [PATCH] fix(ci): lower plugin count threshold to match 24-plugin config --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3218666..4efdeff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,8 +48,8 @@ jobs: vim -u .vimrc -N -c 'redir! > /tmp/test.txt | echo len(g:plugs) | redir END | qa!' 2>/dev/null PLUGS=$(cat /tmp/test.txt | tr -d '[:space:]') echo "Plugins registered: $PLUGS" - if [ "$PLUGS" -lt 25 ]; then - echo "FAIL: expected 25+ plugins, got $PLUGS" + if [ "$PLUGS" -lt 20 ]; then + echo "FAIL: expected 20+ plugins, got $PLUGS" exit 1 fi