Skip to content

Commit 84ce35b

Browse files
scotwellsclaude
andcommitted
ci: add e2e workflow to run integration tests
This workflow will run e2e tests on push to catch regressions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 82778c5 commit 84ce35b

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: E2E Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
e2e:
13+
name: Run Chainsaw E2E Tests
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Clone the code
17+
uses: actions/checkout@v4
18+
19+
- name: Setup Go
20+
uses: actions/setup-go@v5
21+
with:
22+
go-version-file: go.mod
23+
24+
- name: Setup Kind
25+
uses: helm/kind-action@v1
26+
with:
27+
install_only: true
28+
29+
- name: Create Kind test cluster
30+
run: make setup-test-e2e
31+
32+
- name: Bootstrap e2e environment
33+
run: make bootstrap-e2e
34+
35+
- name: Prepare kubeconfigs for Chainsaw
36+
run: make chainsaw-prepare-kubeconfigs
37+
38+
- name: Run Chainsaw tests
39+
run: make chainsaw-test

0 commit comments

Comments
 (0)