From 872029e022648b0230717f13302f6f6726c893ea Mon Sep 17 00:00:00 2001 From: Javad Khalilian Date: Wed, 11 Oct 2023 17:12:23 +0200 Subject: [PATCH] chore: add integration test to the github workflo --- .github/workflows/integration-tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 8e526fcfe54..043b68476f2 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -38,7 +38,10 @@ jobs: run: pnpm install - name: Build client and dependencies - run: pnpm run build --filter @kadena/client + run: pnpm run build --filter @kadena/client-utils - - name: run integration tests + - name: run client integration tests run: pnpm run test:integration --filter @kadena/client + + - name: run client-utils integration tests + run: pnpm run test:integration --filter @kadena/client-utils