-
Notifications
You must be signed in to change notification settings - Fork 33
41 lines (38 loc) · 1.03 KB
/
e2e-tests.yaml
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
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@v2.3.1
- name: node
uses: actions/setup-node@v3
with:
node-version: 18.4.0
- name: deps
run: yarn
- name: build
run: yarn build
# 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.2.12
with:
values: packages/osmojs/starship/configs/local-config.yaml
port-forward: true
version: 0.1.38
- name: e2e
run: cd ./packages/osmojs/starship && yarn e2e:test