From 59a6b568a6182db1ae5a43e10193f62a2eb9fcef Mon Sep 17 00:00:00 2001 From: Mark Wylde Date: Sat, 31 May 2025 00:02:45 +0100 Subject: [PATCH] Attempt to make this work --- action.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/action.yml b/action.yml index 48db405..2530fcf 100644 --- a/action.yml +++ b/action.yml @@ -83,6 +83,17 @@ runs: cd ${{ github.action_path }} bun install + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Install Claude Code CLI + shell: bash + run: | + # Install Claude Code CLI via npm + npm install -g @anthropic-ai/claude-cli + - name: Prepare action id: prepare shell: bash