fix: fill existing resourceVersion if not provided for updates #2031
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: PR Lighthouse Test | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, ready_for_review] | |
paths: | |
- ".github/workflows/pull-lighthouse.yml" | |
- "resources/**" | |
- "tests/**" | |
- "nginx/**" | |
- "src/**" | |
jobs: | |
run-lighthouse-test: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: gardenlinux/workflow-telemetry-action@v2 | |
with: | |
comment_on_pr: false | |
- uses: actions/checkout@v4 | |
# - uses: ./.github/actions/rebase | |
- name: Create Single Cluster | |
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0 | |
with: | |
cluster-name: "k3dCluster" | |
args: >- | |
--agents 1 | |
--port 80:80@loadbalancer | |
--port 443:443@loadbalancer | |
--wait | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Run busola | |
shell: bash | |
run: | | |
.github/scripts/setup_local_busola.sh | |
- name: Run lighthouse tests | |
shell: bash | |
run: | | |
k3d kubeconfig get k3dCluster > tests/lighthouse/fixtures/kubeconfig.yaml | |
cd tests/lighthouse | |
npm ci && npx playwright install --with-deps && npm run "test" | |
- name: Upload Busola logs | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: busola-logs-${{ github.job }} | |
path: | | |
busola.log | |
retention-days: 90 |