Skip to content

Commit

Permalink
ci: make it obvious login shell checks passed
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Sep 2, 2023
1 parent 3c5fc0b commit 203f3ae
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/dorothy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,27 @@ jobs:
dorothy install
- name: 'Dorothy Login Shell: bash'
shell: bash -leo pipefail {0}
run: command-exists dorothy
run: |
command-exists dorothy
echo-style --success='ok'
- name: 'Dorothy Login Shell: zsh'
shell: zsh -l {0}
run: command-exists dorothy
run: |
command-exists dorothy
echo-style --success='ok'
- name: 'Dorothy Login Shell: fish'
shell: fish -l {0}
run: command-exists dorothy
run: |
command-exists dorothy
echo-style --success='ok'
- name: 'Dorothy Login Shell: nu'
shell: nu -l {0}
run: |
env
$env
$nu
command-exists dorothy
echo-style --success='ok'
- name: 'Trunk Format'
if: github.event_name == 'push'
shell: bash -leo pipefail {0}
Expand Down

0 comments on commit 203f3ae

Please sign in to comment.