mirror of
https://oauth2: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@github.com/m1ngsama/chopsticks.git
synced 2026-05-10 19:10:59 +08:00
fix(ci): lower plugin count threshold to match 24-plugin config
This commit is contained in:
parent
f43c8e5f0f
commit
f6b6976bc0
1 changed files with 2 additions and 2 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue