diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 78e41e4..6ec35ea 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -23,11 +23,13 @@ jobs: - name: Update Helm dependencies run: | printf '%s' '${{ steps.find.outputs.chart_dirs }}' \ - | xargs -d , -L 1 helm dependency update + | xargs -d , -L 1 helm dependency update \ + 2> >(grep -v 'found symbolic link' >&2) - 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: | printf '%s' '${{ steps.find.outputs.chart_dirs }}' \ - | xargs -d , -L 1 helm unittest + | xargs -d , -L 1 helm unittest --color \ + 2> >(grep -v 'found symbolic link' >&2)