Chore/tests #4
Workflow file for this run
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
name: 🧑🌾 Integration-Test | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
Test-on-cluster: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Testing on a k8s Kind Cluster | |
uses: helm/kind-action@v1.10.0 | |
- run: | | |
kubectl cluster-info | |
kubectl get nodes | |
- run: | | |
ls -la $HOME/.kube | |
echo $KUBECONFIG | |
cat $HOME/.kube/config | |
- uses: actions/checkout@v3.0.2 | |
- name: Deploy preview env with Garden | |
uses: garden-io/garden-action@v1.2 | |
with: | |
command: test |