From c4ec4c1327b526954485ffc8a3fbd5a774d11aa0 Mon Sep 17 00:00:00 2001 From: Mads Kjeldgaard Date: Tue, 30 Apr 2024 09:28:00 +0200 Subject: [PATCH] fix(ci): Full path to cli --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff2e9a7..2e718d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,9 @@ jobs: git clone https://github.com/tree-sitter/tree-sitter.git cd tree-sitter make - echo "$PWD/cli" >> $GITHUB_PATH - # sudo make install + sudo make install - name: Generate and Test run: | - tree-sitter generate - tree-sitter test + /usr/local/tree-sitter generate + /usr/local/tree-sitter test