在 github > 存储库 > 设置 > 分支中找不到状态检查

Cannot find status check in github > repository > settings > branches

我正在关注文档,但在搜索栏中看不到我的支票。

文档似乎认为支票会自动显示,但对我来说并没有发生。这是一个私人存储库,但我也有专业版。

我的 yaml 文件中需要有什么特别的东西吗?还是我做错了什么?我只需要等待吗?

test.yml

name: Foo

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  build:
    timeout-minutes: 2
    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [16.x]

    steps:
    - uses: actions/checkout@v3
    - name: Use Node.js ${{ matrix.node-version }}
      uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node-version }}
        cache: 'yarn'
    - run: yarn install --immutable
    - run: yarn lint
    - run: yarn types

搜索“构建”有效。

我只搜索了“Foo”和“test”。嗯。

谢谢@rethab