From 2214d2fbb4e107d1836a03517e341bd8b10a59cf Mon Sep 17 00:00:00 2001 From: waldronmatt Date: Fri, 10 May 2024 15:50:28 -0400 Subject: [PATCH] ci(.github): revert mr linting since all cmds should be checked at staging or not critical for cicd --- .github/actions/lint-mr/action.yml | 8 -------- .github/actions/run-affected/action.yml | 2 +- .github/workflows/cicd.yml | 3 --- 3 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 .github/actions/lint-mr/action.yml diff --git a/.github/actions/lint-mr/action.yml b/.github/actions/lint-mr/action.yml deleted file mode 100644 index cde91b86..00000000 --- a/.github/actions/lint-mr/action.yml +++ /dev/null @@ -1,8 +0,0 @@ -name: 'Lint Monorepo' - -runs: - using: 'composite' - steps: - - name: Lint Monorepo - run: pnpm lint:mr - shell: bash diff --git a/.github/actions/run-affected/action.yml b/.github/actions/run-affected/action.yml index d1a3c495..86795cfb 100644 --- a/.github/actions/run-affected/action.yml +++ b/.github/actions/run-affected/action.yml @@ -7,5 +7,5 @@ runs: uses: nrwl/nx-set-shas@v4 - name: Build, Lint, Test - run: npx nx affected -t build,lint,test,lint:knip --parallel=4 + run: npx nx affected -t build,lint,test --parallel=3 shell: bash diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 5a2f12eb..427f3227 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -40,9 +40,6 @@ jobs: - name: Run NX Affected Commands uses: ./.github/actions/run-affected - - name: Lint Monorepo - uses: ./.github/actions/lint-mr - - name: Publish Packages if: github.event_name == 'push' uses: ./.github/actions/publish