fix(workflow): re-add build step for linting because it's required (#18489)

This commit is contained in:
Josh 2023-10-18 10:45:55 +01:00 committed by GitHub
parent 965da42615
commit f478957b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]