From f478957b4d08d13edd0cdc9b58eb392edb51fd1a Mon Sep 17 00:00:00 2001 From: Josh <37798644+joshuaellis@users.noreply.github.com> Date: Wed, 18 Oct 2023 10:45:55 +0100 Subject: [PATCH] fix(workflow): re-add build step for linting because it's required (#18489) --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8fa18fe66d..48d69213cc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -47,6 +47,8 @@ jobs: - uses: nrwl/nx-set-shas@v3 - name: Monorepo install uses: ./.github/actions/yarn-nm-install + - name: Monorepo build + uses: ./.github/actions/run-build - name: Run lint run: yarn nx affected --target=lint --parallel --nx-ignore-cycles @@ -129,7 +131,7 @@ jobs: uses: ./.github/actions/run-build - name: Run test run: yarn nx affected --target=test:front --nx-ignore-cycles - + e2e: timeout-minutes: 60 needs: [changes, build, typescript, unit_front]