-
Notifications
You must be signed in to change notification settings - Fork 31
93 lines (79 loc) · 2.78 KB
/
check-visual.yml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: check-visual
on: push
jobs:
generate-visual-diffs:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Evict playwright snapshot cache when pushing to master
run: |
if [ ${{ github.ref }} = "refs/heads/master" ]; then
echo "Deleting ${{ runner.os }}-snapshots cache"
gh extension install actions/gh-actions-cache
gh actions-cache delete ${{ runner.os }}-snapshots --confirm || true
echo "Done"
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: "20.9.0"
- name: Install dependencies
run: npm ci
- name: Cache Playwright browsers
uses: actions/cache@v4
id: playwright-dep-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
- name: Cache Playwright visual snapshots
uses: actions/cache@v4
id: playwright-snapshot-cache
with:
path: tests/visual/snapshots/**/*
key: ${{ runner.os }}-snapshots
- name: Install Playwright browsers
if: steps.playwright-dep-cache.outputs.cache-hit != 'true'
run: npx playwright install chromium webkit --with-deps
- name: Install Playwright dependencies
if: steps.playwright-dep-cache.outputs.cache-hit == 'true'
run: npx playwright install-deps
- name: Install Radicle binaries
run: |
mkdir -p tests/artifacts;
./scripts/install-binaries;
- name: Run Playwright tests
run: |
if [ ${{ github.ref }} = "refs/heads/master" ]; then
npm run test:e2e -- --project visual-desktop visual-mobile --update-snapshots || true;
else
npm run test:e2e -- --project visual-desktop visual-mobile;
fi
# We don't care about logs in visual snapshot tests, only the images.
- name: Cleanup artifacts
if: always()
run: |
shopt -s globstar;
rm -rf tests/artifacts/**/*.log;
- name: Upload artifacts
id: artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: test-artifacts-${{ runner.os }}
retention-days: 30
if-no-files-found: "ignore"
path: |
tests/artifacts/**/*
- name: Check for artifacts
id: check_artifacts
run: |
if find ./tests/artifacts/**/*.png; then
echo "present=true" >> $GITHUB_OUTPUT
else
echo "present=false" >> $GITHUB_OUTPUT
fi