We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e050c6f commit b720a08Copy full SHA for b720a08
.github/workflows/test.yml
@@ -47,10 +47,20 @@ jobs:
47
with:
48
submodules: false
49
50
+ - name: Build and start Docker Compose services
51
+ run: bash ./setup_github.sh && docker compose up --build -d
52
+
53
+ - name: Wait for services to be ready
54
+ run: docker compose exec api curl -f http://localhost:3000/api/ping
55
+ timeout-minutes: 5
56
57
+ - name: check dns is working
58
+ run: netstat
59
60
61
- name: Run E2E tests
62
uses: cypress-io/github-action@v6
63
- build: bash ./setup_github.sh && docker compose up --build -d
64
config: pageLoadTimeout=100000,baseUrl=http://localhost:8089
65
working-directory: test/
66
0 commit comments