Skip to content

Commit

Permalink
Replace echo with printf to avoid newline
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Nov 23, 2024
1 parent 9dd3fed commit 4c73aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
echo "chart_dirs=$chart_dirs" >> "$GITHUB_OUTPUT"
- name: Update Helm dependencies
run: |
echo '${{ steps.find.outputs.chart_dirs }}' \
printf '%s' '${{ steps.find.outputs.chart_dirs }}' \
| xargs -d , -L 1 helm dependency update
- name: Install helm-unittest
run: helm plugin install https://github.com/helm-unittest/helm-unittest.git --version v0.6.3
- name: Run unit tests
run: |
echo '${{ steps.find.outputs.chart_dirs }}' \
printf '%s' '${{ steps.find.outputs.chart_dirs }}' \
| xargs -d , -L 1 helm unittest

0 comments on commit 4c73aa0

Please sign in to comment.