docs: Add lite package page #302
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: Check Markdown | |
| on: | |
| pull_request: | |
| paths: | |
| - "**.md" | |
| workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
| jobs: | |
| markdown-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout Santa" | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # ratchet:actions/checkout@v6 | |
| - name: "Check for deadlinks" | |
| uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # ratchet:lycheeverse/lychee-action@v1 | |
| with: | |
| fail: true | |
| - name: "Check for trailing whitespace and newlines" | |
| if: '!cancelled()' | |
| run: "! git grep -EIn $'[ \t]+$' -- ':(exclude)*.patch'" |