[go] pcap-split tool #132
Workflow file for this run
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
| name: 馃摎 Offline docs CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| paths: | |
| - "docs_html/**" | |
| - "docs/**" | |
| - "data/**" | |
| - "*.md" | |
| - "Makefile" | |
| - "scripts/docs-offline-symlinks.sh" | |
| - "scripts/check-docs-offline-links.js" | |
| - "scripts/verify-docs-offline-build.sh" | |
| - ".github/workflows/docs-offline-ci.yml" | |
| - ".github/actions/setup-node-pnpm/**" | |
| concurrency: | |
| group: docs-offline-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: "馃敤 Build" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Node.js with pnpm | |
| uses: ./.github/actions/setup-node-pnpm | |
| with: | |
| node-version: "20.19.0" | |
| working-directory: docs_html | |
| - name: Build offline docs site | |
| run: make build-docs-offline | |
| - name: Verify build output | |
| run: make verify-docs-offline-build |