build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.12.0 to 7.13.0 #1072
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: "build-test" | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
types: | |
[ opened, synchronize, reopened ] | |
push: | |
branches: | |
- master | |
- 'releases/*' | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | |
with: | |
node-version: 20 | |
- run: | | |
npm ci | |
npm run all | |
__tests__/verify-no-unstaged-changes.sh | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: ./ | |
with: | |
addons: ingress | |
# Test that nginx ingress has been enabled | |
- run: | | |
minikube addons list | grep 'ingress ' | grep enabled | |
test-extraOptions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: ./ | |
with: | |
extra-config: 'kubelet.max-pods=10' | |
# Test that minikube max-pods extraConfig has been set | |
- run: | | |
cat ~/.minikube/profiles/minikube/config.json | jq '.KubernetesConfig.ExtraOptions[0].Key' | grep max-pods | |
test-insecure-registry: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: ./ | |
with: | |
insecure-registry: '192.168.0.0/16' | |
# Test that minikube max-pods extraConfig has been set | |
- run: | | |
minikube ssh cat /lib/systemd/system/docker.service | grep 192.168.0.0/16 | |
test-featureGatesOptions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: ./ | |
with: | |
feature-gates: 'ValidatingAdmissionPolicy=true' | |
extra-config: 'apiserver.runtime-config=admissionregistration.k8s.io/v1alpha1' | |
kubernetes-version: 1.26.0 | |
container-runtime: containerd | |
# Should be fine | |
- run: | | |
cat ~/.minikube/profiles/minikube/config.json | grep ValidatingAdmissionPolicy | |
test-none-driver: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: ./ | |
with: | |
driver: none | |
- run: | | |
kubectl --namespace=kube-system rollout status deployment/coredns --timeout=60s --watch | |
# Test basic networking and DNS resolution | |
- run: | | |
kubectl run \ | |
--attach \ | |
--image=docker.io/busybox \ | |
--restart=Never \ | |
--rm \ | |
nslookup \ | |
-- \ | |
nslookup kubernetes.default.svc.cluster.local |