Update test.yml
This commit is contained in:
parent
2c3bf3cbc4
commit
678aa7487a
19
.github/workflows/test.yml
vendored
19
.github/workflows/test.yml
vendored
@ -15,10 +15,25 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Run changed-files
|
- name: Run changed-files with defaults
|
||||||
id: changed-files
|
id: changed-files
|
||||||
uses: ./
|
uses: ./
|
||||||
- name: Show output
|
- name: Show output
|
||||||
run: |
|
run: |
|
||||||
echo "${{ toJSON(steps.changed-files.outputs) }}"
|
echo "${{ toJSON(steps.changed-files.outputs) }}"
|
||||||
|
- name: Run changed-files with comma separator
|
||||||
|
id: changed-files-comma
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
separator: ","
|
||||||
|
- name: Show output
|
||||||
|
run: |
|
||||||
|
echo "${{ toJSON(steps.changed-files-comma.outputs) }}"
|
||||||
|
- name: Run changed-files with pipe
|
||||||
|
id: changed-files-pipe
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
separator: "|"
|
||||||
|
- name: Show output
|
||||||
|
run: |
|
||||||
|
echo "${{ toJSON(steps.changed-files-pipe.outputs) }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user