Enhancing PR template #24
Workflow file for this run
This file contains hidden or 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
| name: kind-e2e | |
| on: | |
| pull_request: {} | |
| jobs: | |
| kind-e2e: | |
| runs-on: ubuntu-latest | |
| env: | |
| KUBECONFIG: /home/runner/work/component-appcat/component-appcat/kindev/.kind/kind-config | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: "0" | |
| - name: Checkout kindev repo | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: vshn/kindev | |
| path: kindev | |
| - name: Run kindev | |
| run: | | |
| git config --global user.email "you@example.com" | |
| git config --global user.name "Your Name" | |
| cd kindev && make vshnall | |
| - name: Run tests | |
| run: make push-non-converged | |
| env: | |
| KUBECONFIG: $KUBECONFIG | |
| - name: Run tests | |
| run: make e2e-test | |
| env: | |
| KUBECONFIG: $KUBECONFIG |