diff --git a/.github/workflows/prci.yaml b/.github/workflows/prci.yaml index a876129..7c3e688 100644 --- a/.github/workflows/prci.yaml +++ b/.github/workflows/prci.yaml @@ -23,9 +23,15 @@ jobs: steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 - run: make test + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 + - run: make docs + - run: $([ -z "$(git status --porcelain)" ]) report-status: runs-on: ubuntu-latest - needs: [build, test] + needs: [build, test, docs] if: ${{ !cancelled() }} steps: - name: Ensure CI Success diff --git a/.github/workflows/sync-labels.yaml b/.github/workflows/sync-labels.yaml index 283b8b6..d9e7620 100644 --- a/.github/workflows/sync-labels.yaml +++ b/.github/workflows/sync-labels.yaml @@ -14,10 +14,8 @@ jobs: with: node-version: 18.x - run: npm install -g github-label-sync@v3.0.0 - shell: bash - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 with: sparse-checkout: .github/labels.yaml - run: | github-label-sync --access-token ${{ github.token }} --labels .github/labels.yaml ${{ github.repository }} - shell: bash