From 5c657cc94c28da19be86ffbf66175d5c773a1f60 Mon Sep 17 00:00:00 2001 From: ok-nick <25470747+ok-nick@users.noreply.github.com> Date: Wed, 17 Aug 2022 00:17:52 -0400 Subject: [PATCH] Verify exe in PATH --- .github/actions/test/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 31a676d..2594484 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -39,3 +39,10 @@ runs: path: ${{ inputs.path }} token: ${{ inputs.token }} + - name: Verify executables in PATH + run: | + if ! hash selene stylua rojo 2>/dev/null; then + exit 1; + fi + shell: bash +