docs: verify latest installs and document command catalog #103
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: pull-request-validation | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up current stable Go | |
| uses: actions/setup-go@v7 | |
| with: | |
| go-version: stable | |
| check-latest: true | |
| - name: Set up current Node LTS | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: lts/* | |
| - name: Set up pnpm 11 | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| - name: Run bounded repository validation | |
| run: ./scripts/validate-repository.sh |