This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
feat: add action for cypress tests #9
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: pull-integration-namespace-k3d | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, ready_for_review] | |
# paths: | |
# - ".github/workflows/pull-integration-tests.yml" | |
# - "resources/**" | |
# - "tests/**" | |
# - "nginx/**" | |
# - "src/**" | |
# - "tests/**" | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: gardenlinux/workflow-telemetry-action@v2 | |
with: | |
comment_on_pr: false | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install k3d | |
env: | |
K3D_URL: https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | |
run: curl --silent --fail $K3D_URL | bash | |
- name: Setup Kyma | |
run: | | |
./.github/scripts/setup-kyma.sh | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: setup_busola | |
shell: bash | |
run: | | |
export TAG="test-dev" | |
echo "Create k3d registry..." | |
k3d registry create registry.localhost --port=5000 | |
echo "Make release-dev..." | |
make release-dev | |
echo "Running kyma-dashboard..." | |
docker run -d --rm --net=host --pid=host --name kyma-dashboard "k3d-registry.localhost:5000/kyma-dashboard-local-dev:test-dev" | |
echo "waiting for server to be up..." | |
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "http://localhost:3001")" != "200" ]]; do sleep 5; done | |
sleep 10 | |
- name: run_tests | |
shell: bash | |
run: | | |
k3d kubeconfig get kyma > tests/fixtures/kubeconfig.yaml | |
cd tests | |
npm ci && npm run "test:e2e" | |
- name: Uploads artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: cypress-${{ github.job }} | |
path: tests/integration/cypress/ | |
retention-days: 90 | |
- name: Upload Busola logs | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: busola-logs-${{ github.job }} | |
path: | | |
backend/backend.log | |
busola.log | |
retention-days: 90 |