fix(ci): remove unsupported --language flag from tree-sitter parse

The --language flag is not supported in tree-sitter-cli 0.25.10.
Tree-sitter correctly auto-detects the grammar based on file extension.
This commit is contained in:
2025-11-25 23:46:30 +02:00
parent 56a716a09e
commit dcad1573a8

View File

@@ -140,7 +140,7 @@ jobs:
End
EOF
npx tree-sitter parse --language=shellspec test_sample.shellspec --quiet || {
npx tree-sitter parse test_sample.shellspec --quiet || {
echo "❌ Parser failed on sample ShellSpec code"
exit 1
}