From 17fe26463258d68d6c062145082f75b4c456cddc Mon Sep 17 00:00:00 2001 From: David Leek Date: Wed, 10 Jan 2024 10:27:30 +0100 Subject: [PATCH] chore: remove redundant linting check, lint before test (#5826) ## About the changes - Removes redundant lint check - Runs linting before test --- .github/workflows/build_frontend_prs.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_frontend_prs.yml b/.github/workflows/build_frontend_prs.yml index 7e147b94eac6..c7aeae714475 100644 --- a/.github/workflows/build_frontend_prs.yml +++ b/.github/workflows/build_frontend_prs.yml @@ -21,7 +21,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: yarn --frozen-lockfile - - run: yarn run test - - run: yarn run fmt:check - run: yarn run lint:check + - run: yarn run test - run: yarn run ts:check # TODO: optimize