Re-extend test timeout for github workflow #974
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: spec-generator tests | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/[email protected] | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install bikeshed | |
| # NOTE: Pinning to 5.3.4 due to regression #3198 in 5.3.5 | |
| run: pipx install bikeshed==5.3.4 && bikeshed update | |
| - run: npm install | |
| - run: npx respec2html -e --timeout 30 --src "https://w3c.github.io/spec-generator/respec.html" | |
| - run: npm test |