mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
wait on mariadb and redis in database test
This commit is contained in:
parent
c4d04b4143
commit
c27c07003d
5
.github/workflows/test_database.yml
vendored
5
.github/workflows/test_database.yml
vendored
@ -61,6 +61,11 @@ jobs:
|
|||||||
bun install --filter database --frozen-lockfile
|
bun install --filter database --frozen-lockfile
|
||||||
bun install --global --no-save turbo@^2
|
bun install --global --no-save turbo@^2
|
||||||
|
|
||||||
|
- name: wait on mariadb & redis ready
|
||||||
|
run: |
|
||||||
|
until nc -z 127.0.0.1 3306; do echo waiting for mariadb; sleep 1; done;
|
||||||
|
until nc -z 127.0.0.1 6379; do echo waiting for redis; sleep 1; done;
|
||||||
|
|
||||||
- name: Database | up + test
|
- name: Database | up + test
|
||||||
run: turbo database#test database#build database#typecheck
|
run: turbo database#test database#build database#typecheck
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user