Skip to content

Commit 801e898

Browse files
committed
attempt for full flow
1 parent 9ae8b5b commit 801e898

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/e2e.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,25 @@ jobs:
6060
make wasi-exec
6161
6262
# TODO: https://github.com/peter-evans/docker-compose-actions-workflow
63+
# modified version of `make start-all`
64+
- name: Build the stack
65+
run: |
66+
anvil --host 0.0.0.0 &
67+
docker compose up -d
68+
69+
- name: Run tests
70+
run: |
71+
make deploy-contracts
72+
sleep 2
73+
TRIGGER_EVENT="NewTrigger(bytes)" make deploy-service
74+
sleep 2
75+
COIN_MARKET_CAP_ID=1 make trigger-service
76+
sleep 2
6377
78+
- name: Run show result
79+
run: make show-result
80+
81+
- name: Stop the stack
82+
run: |
83+
killall anvil
84+
docker compose down

0 commit comments

Comments
 (0)