Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating deps #41

Merged
merged 2 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
run: npm run build

- name: Start containers
run: docker-compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" up -d
run: docker compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" up -d

- name: Run tests
run: npm run test:functional

- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" down
run: docker compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" down
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- run: npm run test:unit:frontend:coverage

- name: Start containers
run: docker-compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" up -d
run: docker compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" up -d

- run: npm run test:integration:coverage
- run: npm run test:coverage:merge
Expand All @@ -57,4 +57,4 @@ jobs:

- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" down
run: docker compose -f "docker-compose.base.yml" -f "docker-compose.functional.yml" down
5 changes: 2 additions & 3 deletions docker-compose.base.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
version: '3'
services:
gql-schema-registry-db:
image: mysql:8
command: mysqld --default-authentication-plugin=mysql_native_password --skip-mysqlx
image: mysql:8.4
container_name: gql-schema-registry-db
environment:
SERVICE_3306_NAME: gql-schema-registry-db
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: schema_registry
ports:
Expand Down
5 changes: 2 additions & 3 deletions docker-compose.perf-tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
version: '3'
services:
gql-schema-registry-db:
image: mysql:8
command: mysqld --default-authentication-plugin=mysql_native_password --skip-mysqlx
image: mysql:8.4
container_name: gql-schema-registry-db
environment:
SERVICE_3306_NAME: gql-schema-registry-db
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: schema_registry
ports:
Expand Down
Loading
Loading