From dcad1573a8271962dca905c661df4423320b9a02 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 25 Nov 2025 23:46:30 +0200 Subject: [PATCH] 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. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0b14fa7..0bb30c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }