-
Notifications
You must be signed in to change notification settings - Fork 52
47 lines (44 loc) · 1.21 KB
/
run-e2e-tests.yaml
File metadata and controls
47 lines (44 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Run E2E Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: checkout 🛎️
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: deps
run: pnpm install
- name: build
run: pnpm run build
- name: codegen
run: pnpm --filter @cosmology/starship-test run codegen
# Starship Infra setup
# - Create a local kind cluster
# - Creates a new namespace based on the name
# - Spins up the infra with the given config file
# - Waits till all nodes are running (timeout 30m)
# - Port forward all ports to localhost for next steps to connect
- name: infra
id: starship-action
uses: cosmology-tech/starship-action@0.5.8
with:
config: packages/starship/configs/local-config.yaml
cli-version: 3.0.0
- name: e2e
run: pnpm --filter @cosmology/starship-test run starship:test