Skip to content

#1570. Connect Action #5638

#1570. Connect Action

#1570. Connect Action #5638

Workflow file for this run

name: Test K3d Cluster
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "package.json"
- "package-lock.json"
- "CODEOWNERS"
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-k3d-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup golang
uses: ./.github/actions/golang
- name: Setup NodeJS
uses: ./.github/actions/node
- name: Build binary and zarf packages
uses: ./.github/actions/packages
- name: Setup K3d
uses: ./.github/actions/k3d
- name: Run tests
run: make test-e2e ARCH=amd64
- name: Save logs
if: always()
uses: ./.github/actions/save-logs