From 8c8188b86efd8bb05dcf7fda0c7e54d4d4050323 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Sun, 16 Jun 2024 17:03:45 +0530 Subject: [PATCH] seperate out step for installing starship and verifying starship installation --- action.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yaml b/action.yaml index ecc332b..0072383 100644 --- a/action.yaml +++ b/action.yaml @@ -119,6 +119,10 @@ runs: if: inputs.cli-version != '0.0.0' # Skip if cli-version is 0.0.0, expected to be used for local testing run: | yarn global add @starship-ci/cli@${{ inputs.cli-version }} + shell: bash + + - name: Verify starship cli + run: | starship --version shell: bash