-
Notifications
You must be signed in to change notification settings - Fork 99
50 lines (44 loc) · 1.15 KB
/
integration.yml
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
48
49
50
name: Integration
on:
push:
branches:
- main
pull_request:
jobs:
test:
# teritorid hangs on ubuntu runner
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Checkout teritori-dapp repo
uses: actions/checkout@v4
with:
repository: TERITORI/teritori-dapp
path: teritori-dapp
ref: 7e968801a0a03f47f59dd7683f1653935222ea88
- uses: actions/setup-go@v3
with:
go-version: "1.20"
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
cache-dependency-path: "teritori-dapp/yarn.lock"
- name: Run integration tests
run: make integration-tests
env:
TERITORI_DAPP_REPO: teritori-dapp
test-e2e:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.21.x
- uses: actions/checkout@v4
- name: Build Teritori Docker Image
run: make docker.build.e2e
- name: Build Hermes Docker Image
run: make docker.build.hermes
- name: Test E2E
run: make test-e2e