Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Mar 5, 2021
1 parent 2c3bf3c commit 678aa74
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -15,10 +15,25 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run changed-files
- name: Run changed-files with defaults
id: changed-files
uses: ./
- name: Show output
run: |
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) }}"

0 comments on commit 678aa74

Please sign in to comment.