From ed970feb37c3272bcbeaad7ffa3aff14f47af97a Mon Sep 17 00:00:00 2001 From: Alexandre BODIN Date: Thu, 23 Mar 2023 16:26:30 +0100 Subject: [PATCH] Run build:ts before unit-test back (#16194) --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc3b117716..77f29d9357 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,6 +62,8 @@ jobs: key: ${{ runner.os }}-${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }} - uses: nrwl/nx-set-shas@v3 - run: yarn install --frozen-lockfile + - name: Run build:ts + run: yarn nx run-many --target=build:ts --nx-ignore-cycles - name: Run tests run: yarn nx affected --target=test:unit --nx-ignore-cycles