Publish 1.0.0a1 #23
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 Known Modules Map | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| check_modules_map: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: python -m pip install -U "jupyterlab>=4,<5" | |
| - name: Regenerate known modules map | |
| run: python scripts/modules.py | |
| - name: Fail on generated file drift | |
| run: git diff --exit-code -- src/modules.ts |