-
Notifications
You must be signed in to change notification settings - Fork 226
76 lines (60 loc) · 2.04 KB
/
update_galata_references.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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
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
with:
token: ${{ secrets.GITHUB_TOKEN }}
- 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 Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: dev-environment.yml
create-args: >-
python=3.11
- name: Install ipympl
run: pip install .
- name: Install Galata
run: |
jlpm install
jlpm playwright install chromium
working-directory: ui-tests
- name: Generate updated Galata References
run: jlpm test:update
working-directory: ui-tests
- name: Compress screenshots
run: |
sudo apt install optipng
optipng *.png
working-directory: ui-tests/tests/ipympl.test.ts-snapshots
- name: Commit reference images
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git pull
git add ui-tests/tests/ipympl.test.ts-snapshots
git commit -m "Update Galata References"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}