@@ -288,52 +288,6 @@ jobs:
288288 - run : ./scripts/circleci/run-saucelabs-tests.sh
289289 - *slack_notify_on_failure
290290
291- # ----------------------------------
292- # Lint job.
293- # ----------------------------------
294- lint :
295- << : *job_defaults
296- environment :
297- CI_GIT_BASE_REVISION : << pipeline.git.base_revision >>
298- CI_GIT_REVISION : << pipeline.git.revision >>
299- steps :
300- - checkout_and_rebase
301- - *restore_cache
302- - *setup_bazel_ci_config
303- - *yarn_install
304- - *setup_bazel_binary
305-
306- - run :
307- name : Checking package externals
308- command : |
309- bazel build //:package_externals
310- yarn check-package-externals $(bazel info bazel-bin)/package_externals.json
311-
312- - run :
313- name : Checking entry-points configuration
314- command : |
315- bazel build //:entry_points_manifest
316- yarn check-entry-point-setup $(bazel info bazel-bin)/entry_points_manifest.json
317-
318- - run : yarn ng-dev format changed --check << pipeline.git.base_revision >>
319- - run : yarn ownerslint
320- - run : yarn detect-component-id-collisions
321- - run : yarn stylelint
322- - run : yarn tslint
323- - run : yarn -s ts-circular-deps:check
324- # Should be last so that it doesn't prevent the other lint checks from running.
325- - run :
326- name : Check Commit Message (PR Only)
327- # Only run the commit message checks on pull requests since we can't do
328- # much about any failures that have made it into the main branch.
329- command : |
330- if [ -n "$CIRCLE_PR_NUMBER" ]; then
331- yarn ng-dev commit-message validate-range $CI_GIT_BASE_REVISION $CI_GIT_REVISION
332- fi
333-
334- - *slack_notify_on_failure
335- - *save_cache
336-
337291 # -------------------------------------------------------------------------------------------
338292 # Job that builds all release packages. The built packages can be then used in the same
339293 # workflow to publish snapshot builds.
@@ -623,16 +577,13 @@ workflows:
623577 filters : *only_on_pull_requests_filter
624578 requires :
625579 - build_release_packages
626- - lint :
627- filters : *ignore_presubmit_branch_filter
628580 - publish_snapshots :
629581 filters : *publish_branches_filter
630582 requires :
631583 - build_release_packages
632584 - deploy_docs_site :
633585 filters : *publish_branches_filter
634586 requires :
635- - lint
636587 - build_release_packages
637588 - tests_browsers
638589
0 commit comments