mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
ci: use pwsh for tests on all platforms
This commit is contained in:
parent
fcd6610c4a
commit
d704935d05
1 changed files with 6 additions and 6 deletions
12
.github/actions/test/action.yml
vendored
12
.github/actions/test/action.yml
vendored
|
@ -33,16 +33,16 @@ runs:
|
|||
path: ${{ inputs.path }}
|
||||
token: ${{ inputs.token }}
|
||||
|
||||
- name: Verify executables in PATH on Bash
|
||||
- name: Verify executables in PATH on bash
|
||||
run: |
|
||||
if ! hash selene stylua rojo 2>/dev/null; then
|
||||
exit 1;
|
||||
fi
|
||||
command -v selene
|
||||
command -v stylua
|
||||
command -v rojo
|
||||
shell: bash
|
||||
|
||||
- name: Verify executables in PATH on PowerShell
|
||||
- name: Verify executables in PATH on pwsh
|
||||
run: |
|
||||
Get-Command "selene"
|
||||
Get-Command "stylua"
|
||||
Get-Command "rojo"
|
||||
shell: powershell
|
||||
shell: pwsh
|
||||
|
|
Loading…
Reference in a new issue