From 2316145c999b6fd29f4cb1c2eab597df6aea6cc1 Mon Sep 17 00:00:00 2001 From: fern-support <126544928+fern-support@users.noreply.github.com> Date: Mon, 15 Dec 2025 12:01:44 -0500 Subject: [PATCH] Enable wire tests on ci --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb43fde64..6cb691402 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,13 @@ jobs: uses: actions/setup-node@v3 - name: Compile - run: yarn && yarn test:unit + run: yarn && yarn build + + - name: Unit Test + run: yarn test:unit + + - name: Wire Test + run: yarn test:wire publish: needs: [ compile ]