This file contains 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 notebooks | ||
on: | ||
pull_request: | ||
jobs: | ||
test: | ||
uses: ./.github/workflows/template.yml | ||
steps: | ||
- name: Generate JS test files | ||
run: | | ||
python3 devtools/make_test_js.py --api | ||
- name: Start Jupyter Lab | ||
run: | | ||
nohup jupyter lab --no-browser --port=8888 & | ||
sleep 10 | ||
- name: Run Nightwatch tests | ||
run: npx nightwatch |