chore(readme): update readme #741
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: "Create cluster using KinD" | |
on: [pull_request, push] | |
jobs: | |
kind: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
- run: npm install | |
- run: npm run build | |
- name: "Run engineerd/setup-kind@${{github.sha}}" | |
uses: ./ | |
- run: kubectl cluster-info | |
- run: kubectl version | |
- run: kubectl get pods -n kube-system |