docs: retire maintainer-only validation artifacts #22
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: ${{ matrix.os }} / Node ${{ matrix.node }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| node: [22, 24, 26] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Versions | |
| run: | | |
| node --version | |
| npm --version | |
| git --version | |
| - name: Test | |
| run: npm test | |
| - name: Syntax check | |
| run: npm run check:syntax | |
| - name: Package dry run | |
| run: npm run pack:dry-run | |
| - name: Whitespace check | |
| run: git diff --check |