Skip to content

Commit 220f0ef

Browse files
hyperpolymathclaude
andcommitted
fix(ci): drop just from migration-assistant job (not preinstalled)
The 2a `migration-assistant` job ran `just install-grammar`, but GitHub Actions ubuntu-latest runners do not ship the `just` task runner preinstalled. Direct script invocation `./editors/tree-sitter-rescript/scripts/install.sh` is equivalent and removes the implicit dependency on a tool nothing else in this workflow uses. The justfile recipe stays for local developer ergonomics. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5d234ef commit 220f0ef

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,12 @@ jobs:
149149
run: npm install -g tree-sitter-cli@^0.25.0
150150

151151
- name: Build pinned tree-sitter-rescript grammar
152-
run: just install-grammar
152+
# Direct script invocation rather than `just install-grammar` —
153+
# GitHub Actions runners do not ship `just` preinstalled, and
154+
# there is no other recipe used in this workflow that justifies
155+
# adding a setup step for it. The justfile recipe still exists
156+
# for local developer ergonomics; both call the same script.
157+
run: ./editors/tree-sitter-rescript/scripts/install.sh
153158

154159
- name: Verify generated parser
155160
# `tree-sitter generate` is supposed to drop src/parser.c into

0 commit comments

Comments
 (0)