-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add E2E workflow github action (#348)
* Add E2E workflow github action Update action name and path Edit lines and comments Git rules fix * Change file names and fix PR types * Remove branch master
- Loading branch information
1 parent
565f151
commit 8e79b5e
Showing
3 changed files
with
34 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: E2E Workflow | ||
|
||
on: | ||
# Run this on pushes to main | ||
push: | ||
branches: | ||
- main | ||
|
||
# Or when PR operations are done | ||
pull_request: | ||
types: [ opened, synchronize, reopened, edited ] | ||
|
||
jobs: | ||
run-E2E-workflow: | ||
name: Run E2E Workflow on KinD cluster | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
kube-tag: | ||
- v1.18.2 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: v3.3.0 | ||
|
||
- name: Run Start | ||
run: bin/test-workflow/start |
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
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