-
Notifications
You must be signed in to change notification settings - Fork 18
70 lines (50 loc) · 1.57 KB
/
test.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Tests
on:
pull_request:
branches:
- main
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v4
- name: Install dependencies
run: npm install
working-directory: ./hardhat
- name: Run unit tests
run: ./stack unit-tests
- name: Run hardhat unit tests
run: ./stack unit-tests-hardhat
run-integration-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Doppler CLI
uses: dopplerhq/cli-action@v1
- name: Install golang
uses: actions/setup-go@v5
- name: Install node
uses: actions/setup-node@v4
- name: Build Docker Images
run: ./stack compose-build
- name: Initialize chain
run: ./stack compose-init
- name: Start base services
run: ./stack compose-services
- name: Start solver
run: ./stack solver --disable-telemetry=true --api-host=""
- name: Run solver integration tests
run: ./stack integration-tests-solver
- name: Start resource provider
run: ./stack resource-provider --disable-telemetry=true --api-host=""
- name: Run main integration tests
run: ./stack integration-tests-solver
- name: Display resource provider logs
run: docker logs resource-provider
- name: Display solver logs
run: docker logs solver
- name: Display chain logs
run: docker logs chain