From 53c1cb9e245cac51b22d19c51dd8293201c6e1e4 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 7 Dec 2023 00:47:51 +0900 Subject: [PATCH] fix typo --- .github/workflows/cli.test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli.test.yaml b/.github/workflows/cli.test.yaml index 0d25143c6..641b0c5f6 100644 --- a/.github/workflows/cli.test.yaml +++ b/.github/workflows/cli.test.yaml @@ -38,12 +38,12 @@ jobs: - name: Delegator db migrate run: yarn delegator prisma-migrate dev --name init-delegator env: - DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/orakl?schema=public" + DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/delegator?schema=public" - name: Api db migrate run: yarn api prisma-migrate dev --name init-api env: - DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/delegator?schema=public" + DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/orakl?schema=public" - name: Run delegator run: yarn delegator build && yarn delegator start &