Add releaser CI scripts #12
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 UI-tests 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 UI Tests References | |
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, 'update playwright snapshots') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
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 Micromamba | |
uses: mamba-org/provision-with-micromamba@main | |
- name: Install dependencies and build tests | |
run: | | |
python -m pip install ".[test]" | |
cd ui-tests | |
jlpm install --immutable | |
- uses: jupyterlab/maintainer-tools/.github/actions/update-snapshots@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
test_folder: ui-tests |