From 806c0c322dcbe86a733ae61047cdb7a7b1ba9ee0 Mon Sep 17 00:00:00 2001 From: Marc-Aurele Besner <82244926+marc-aurele-besner@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:41:20 -0400 Subject: [PATCH] build auto-utils first --- .github/workflows/build.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ff3d2889..55f9bef6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -9,23 +9,26 @@ jobs: steps: - name: Checkout ๐Ÿ›Ž๏ธ uses: actions/checkout@v3 - + - name: Set up Node.js uses: actions/setup-node@v2 with: node-version: '18' - + - name: Enable Corepack run: corepack enable - + - name: Set Yarn version to Berry run: corepack prepare yarn@4.2.2 --activate - name: Install dependencies run: yarn install + + - name: Build auto-utils package ๐Ÿ”ง + run: yarn workspace @autonomys/auto-utils build - name: Build all packages ๐Ÿ”ง run: yarn build - + - name: Run tests ๐Ÿงช run: yarn test