Reanimation backlog: REV-001, REV-002, the cline-dev-tara merge, the dev-loop fix, and REV-008 #1
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: Check build artefacts | |
| # Generated webpack output used to be committed under packages/noodl-editor/src/, | |
| # which is how a months-old bundle could run instead of the source beside it | |
| # (REV-008). This guard makes that regression loud instead of silent. | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # No npm install: the check only shells out to `git ls-files`. | |
| - name: Assert no generated bundles are tracked | |
| run: node scripts/check-build-artefacts.js |