DataGrid doesn't display table, only text #532
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-ipw7: | |
name: Update Galata References - ipywidgets 7 | |
if: > | |
( | |
github.event.issue.author_association == 'OWNER' || | |
github.event.issue.author_association == 'COLLABORATOR' || | |
github.event.issue.author_association == 'MEMBER' | |
) && github.event.issue.pull_request && contains(github.event.comment.body, 'please update snapshots') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure git to use https | |
run: git config --global hub.protocol https | |
- name: Install hub | |
run: sudo apt-get update && sudo apt-get install -y hub | |
- 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 Conda environment with Micromamba | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-name: ipydatagrid-test-ipw7 | |
environment-file: test-environment-ipyw7.yaml | |
- name: Install the package | |
run: pip install -vv . | |
- uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
server_url: http-get://localhost:8888/ | |
test_folder: ui-tests-ipw7 | |
update-reference-screenshots-ipw8: | |
name: Update Galata References - ipywidgets 8 | |
if: > | |
( | |
github.event.issue.author_association == 'OWNER' || | |
github.event.issue.author_association == 'COLLABORATOR' || | |
github.event.issue.author_association == 'MEMBER' | |
) && github.event.issue.pull_request && contains(github.event.comment.body, 'please update snapshots') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure git to use https | |
run: git config --global hub.protocol https | |
- name: Install hub | |
run: sudo apt-get update && sudo apt-get install -y hub | |
- 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 Conda environment with Micromamba | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-name: ipydatagrid-test-ipw8 | |
environment-file: test-environment-ipyw8.yaml | |
- name: Install the package | |
run: pip install -vv . | |
- name: Install dependencies | |
working-directory: ui-tests | |
env: | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 | |
run: jlpm install | |
- uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@v1 | |
with: | |
npm_client: jlpm | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
start_server_script: 'null' | |
test_folder: ui-tests-ipw8 |