-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from cpanato/update_gh_action
update actions
- Loading branch information
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,20 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
install_local_path_provisioner: true | ||
|
||
- name: Run chart-testing (lint) | ||
uses: helm/[email protected] | ||
id: lint | ||
uses: helm/[email protected] | ||
with: | ||
command: lint | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
installLocalPathProvisioner: true | ||
# Only build a kind cluster if there are chart changes to test. | ||
if: steps.lint.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
uses: helm/[email protected].2 | ||
uses: helm/[email protected].3 | ||
with: | ||
command: install |