diff --git a/.github/actions/prepare-install/action.yml b/.github/actions/prepare-install/action.yml index 2334ef0b406f..7686f9cd4de2 100644 --- a/.github/actions/prepare-install/action.yml +++ b/.github/actions/prepare-install/action.yml @@ -76,3 +76,4 @@ runs: YARN_INSTALL_STATE_PATH: .yarn/ci-cache/install-state.gz # Very small speedup when lock does not change # Other environment variables HUSKY: '0' # By default do not run HUSKY install + SKIP_POSTINSTALL: 'true' diff --git a/project.json b/project.json index f51e50b1493a..5c3df134291a 100644 --- a/project.json +++ b/project.json @@ -9,10 +9,16 @@ "outputs": ["{workspaceRoot}/dist"] }, "lint": { - "command": "eslint . --ignore-pattern=packages --cache" + "command": "eslint . --ignore-pattern=packages --cache", + "dependsOn": [ + "eslint-plugin:build", + "eslint-plugin-internal:build", + "typescript-eslint:build" + ] }, "generate-configs": { - "command": "tsx tools/scripts/generate-configs.mts" + "command": "tsx tools/scripts/generate-configs.mts", + "dependsOn": ["eslint-plugin:build"] }, "generate-contributors": { "command": "tsx tools/scripts/generate-contributors.mts"