docs: adds July 2026 to newsletter archive #30
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 links | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| jobs: | |
| linkchecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # 7.0.1 | |
| with: | |
| persist-credentials: false # since the next step does not need it | |
| - name: Start 11ty dev server | |
| id: server | |
| run: npm start | |
| background: true | |
| - parallel: | |
| - name: Wait for server to be ready | |
| run: npx -y wait-on http://localhost:8080 | |
| - name: Install linkchecker | |
| run: pip install linkchecker | |
| - name: Run linkchecker | |
| id: linkchecker | |
| run: linkchecker --config=linkcheckerrc --check-extern -v http://localhost:8080 | |
| - name: Stop 11ty | |
| cancel: server |