Fix web workers reference #101
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: bikeshed lint | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| bikeshed: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: install bikeshed | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libxml++2.6-dev libxslt1-dev | |
| python -m pip install --upgrade pip | |
| pip install bikeshed | |
| bikeshed update | |
| - name: lint | |
| run: | | |
| bikeshed spec index.bs /dev/null |