docs(dense): restore bestPractices count parity for useListFocus #425
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright (c) Meta Platforms, Inc. and affiliates. | |
| name: Internal Registry | |
| # Verifies every pinned dependency is available from the registry before it can | |
| # break a build. Mark the merge_group run ("Internal Registry / dependency-check") | |
| # as a REQUIRED status check to gate landing; fork PRs are skipped and enforced | |
| # by that required merge_group run. | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| merge_group: | |
| permissions: {} | |
| jobs: | |
| dependency-check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: facebook/lexical/.github/actions/internal-registry/dependency-check@internal-registry-dependency-check-v1 |