From 815dc962d90a2e7af6beaa0be88b8d729774bd18 Mon Sep 17 00:00:00 2001 From: Daniel Izdebski Date: Wed, 4 Oct 2023 15:38:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20chore(ci):=20Add=20`build`=20ste?= =?UTF-8?q?p=20to=20`test.yml`=20(#911)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 3 +++ turbo.json | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bf103c225..4929be44a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,5 +26,8 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Build project + run: pnpm run build + - name: Run tests run: pnpm run test diff --git a/turbo.json b/turbo.json index 33100bcd4..d79846eed 100644 --- a/turbo.json +++ b/turbo.json @@ -2,6 +2,7 @@ "$schema": "https://turbo.build/schema.json", "pipeline": { "build": { + "dependsOn": ["^build"], "outputs": ["dist/**", "types/**"] }, "test": {}