Update extension deps and UI test CI workflows #455
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 Playwright Snapshots | |
on: | |
issue_comment: | |
types: [created, edited] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-snapshots: | |
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, 'update playwright snapshots') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: React to the triggering comment | |
run: | | |
gh api repos/${{ github.repository }}/issues/comments/${{ github.event.comment.id }}/reactions --raw-field 'content=+1' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout the branch from the PR that triggered the job | |
run: | | |
gh pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install jupytext | |
run: | | |
HATCH_BUILD_HOOKS_ENABLE=true python -m pip install -e '.[test-ui]' jupyterlab | |
# Uninstall jupyter-fs as it overrides the original browser-test.js to | |
# check its own functionality (https://github.com/jpmorganchase/jupyter-fs/blob/main/jupyterfs/browser-test.js) | |
pip uninstall jupyter-fs -y | |
- name: Update snapshots | |
uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# Test folder within your repository | |
test_folder: jupyterlab/packages/jupyterlab-jupytext-extension/ui-tests/tests | |
# Playwright knows how to start JupyterLab server | |
start_server_script: 'null' | |
npm_client: jlpm |