-
-
Notifications
You must be signed in to change notification settings - Fork 17
feat(ci): implement new single-script e2e test workflow #972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
.github/workflows/e2e-tests.yml
Outdated
- name: Install yq | ||
run: sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq | ||
- name: Run Deployment Script | ||
run: ./build-and-deploy-minikube.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it seems it is still waiting here as the script will never end. Instead it might be better to run this in the background (e.g. ./build-and-deploy-minikube.sh &
and then do a poll:
run: ./build-and-deploy-minikube.sh | |
run: | | |
./build-and-deploy-minikube.sh & | |
pause 10 | |
kubectl wait --for=condition=ready pod -l app=wrongsecrets-balancer --timeout=2s |
Hi @seershan , it's been a while! Hope you are doing great! |
Hello @commjoen actually im out of station currently, I will start again by Tuesday. |
all good! Have a good time and will see the commits later 👍 |
Thank you for submitting a pull request to the WrongSecrets Party!
What kind of changes does this PR include?
Checklist:
This pull request adds a suite of Cypress End-to-End tests and a new GitHub Action to run them, fulfilling the requirements of issue #284. It also includes the necessary fixes to the deployment scripts and configuration to get the local and CI environments working.
This is a clean replacement for the previous pull request (#970).
Closes #284