mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
Test executables in PATH on powershell
This commit is contained in:
parent
14933ea774
commit
820eb00cd1
1 changed files with 7 additions and 1 deletions
8
.github/actions/test/action.yml
vendored
8
.github/actions/test/action.yml
vendored
|
@ -32,10 +32,16 @@ runs:
|
||||||
path: ${{ inputs.path }}
|
path: ${{ inputs.path }}
|
||||||
token: ${{ inputs.token }}
|
token: ${{ inputs.token }}
|
||||||
|
|
||||||
- name: Verify executables in PATH
|
- name: Verify executables in PATH on Bash
|
||||||
run: |
|
run: |
|
||||||
if ! hash selene stylua rojo 2>/dev/null; then
|
if ! hash selene stylua rojo 2>/dev/null; then
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: verify executables in PATH on Powershell
|
||||||
|
run: |
|
||||||
|
if ! hash selene stylua rojo 2>/dev/null; then
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
shell: powershell
|
||||||
|
|
Loading…
Reference in a new issue