From d04e29389be4880f421a3e16bde7dc13a86c8444 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Fri, 8 Sep 2023 12:58:55 +0200 Subject: [PATCH] chore(workflows): Build core plugins prior to tests --- .github/workflows/tests.all.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.all.yml b/.github/workflows/tests.all.yml index efe578d73ab..b4aa1f3f048 100644 --- a/.github/workflows/tests.all.yml +++ b/.github/workflows/tests.all.yml @@ -44,6 +44,8 @@ jobs: run: yarn install env: CI: true + - name: Build core plugins + run: "cd plugins/core-plugins && npm build && cd -" - name: Run all tests run: npm run testall - name: Upload to codecov.io