From 53cbc87d321bf575dbd3ab8b973b3d3391f8123d Mon Sep 17 00:00:00 2001 From: Aryan Prince Date: Sat, 27 Jul 2024 00:26:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(turbo):=20Disable=20cachin?= =?UTF-8?q?g=20for=20`db:setup`=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- turbo.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d789233..30d5a34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,7 +103,7 @@ jobs: uses: hoverkraft-tech/compose-action@v2.0.1 - name: Setup database with migrations and seed data - run: pnpm db:setup --force + run: pnpm db:setup - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps diff --git a/turbo.json b/turbo.json index 57a39ec..f045878 100644 --- a/turbo.json +++ b/turbo.json @@ -40,7 +40,8 @@ "cache": false }, "db:setup": { - "dependsOn": ["^topo"] + "dependsOn": ["^topo"], + "cache": false }, "db:studio": { "dependsOn": ["^topo"]