🐛 ipywidgets not working with latest voila release #1189
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: Update Galata References | |
on: | |
issue_comment: | |
types: [created, edited] | |
permissions: | |
contents: write | |
pull-requests: write | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
update-reference-screenshots: | |
name: Update Galata References | |
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, 'update galata references') }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8] | |
node-version: [16.x] | |
steps: | |
- name: Base Setup | |
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure git to use https | |
run: git config --global hub.protocol https | |
- name: Checkout the branch from the PR that triggered the job | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements-visual-test.txt | |
python -m pip install ".[test]" | |
jlpm | |
jlpm build | |
jupyter labextension develop . --overwrite | |
cd ui-tests | |
jlpm install | |
- uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
server_url: http-get://localhost:8866/ | |
test_folder: ui-tests |