feat: Add Chocolatey and Homebrew packaging support (#44) #78
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: Documentation | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "**/*.md" | |
| - "docs/**" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "**/*.md" | |
| - "docs/**" | |
| jobs: | |
| markdown-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install markdownlint-cli | |
| run: npm install -g markdownlint-cli | |
| - name: Run markdownlint | |
| run: markdownlint '**/*.md' --disable MD036 --ignore node_modules | |
| broken-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install markdown-link-check | |
| run: npm install -g markdown-link-check | |
| - name: Check for broken links | |
| run: | | |
| find . -name "*.md" -not -path "./node_modules/*" | xargs -n1 markdown-link-check -q |