fix: support unknown phase #25
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: Test Build on BinderHub | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| test-build: | |
| name: Test Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: 2i2c-org/clinder@HEAD | |
| with: | |
| hub-url: https://mybinder.org | |
| repo: binder-examples/requirements | |
| ref: HEAD | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Install MyST Markdown | |
| run: npm install -g mystmd | |
| # This will fail if it picks up the CI variable locally | |
| - name: Build MyST Project | |
| run: myst build --site --strict --execute | |
| working-directory: test |