fix: guard g_headless_mode extern under PLUG_ENABLE_HEADLESS_MODE to … #17
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: Documentation Validator | |
| on: | |
| push: | |
| branches: [ trunk, main ] | |
| paths: | |
| - '**.md' | |
| - 'docs/**' | |
| pull_request: | |
| branches: [ trunk, main ] | |
| paths: | |
| - '**.md' | |
| - 'docs/**' | |
| jobs: | |
| validate-markdown: | |
| name: Lint Markdown Files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install markdownlint-cli | |
| run: npm install -g markdownlint-cli | |
| - name: Lint Markdown Files | |
| run: | | |
| markdownlint --config .github/markdownlint.json "**/*.md" --ignore "plug.app/rt/target/**" --ignore "node_modules/**" |