We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6259d48 commit 71896c8Copy full SHA for 71896c8
1 file changed
action.yaml
@@ -32,6 +32,13 @@ runs:
32
run: dart pub global activate -sgit https://github.com/Droyder7/dart_diff
33
34
- name: Run exec command
35
+ if: ${{ inputs.use-melos == 'false' }}
36
shell: bash
37
run: dart_diff exec -- '${{ inputs.command }}'
38
working-directory: ${{ inputs.working-dir }}
39
+
40
+ - name: Run melos command
41
+ if: ${{ inputs.use-melos == 'true' }}
42
+ shell: bash
43
+ run: melos exec -- "dart_diff exec -- '${{ inputs.command }}'"
44
+ working-directory: ${{ inputs.working-dir }}
0 commit comments