-
Notifications
You must be signed in to change notification settings - Fork 1
165 lines (137 loc) · 4.7 KB
/
test.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: Test
on:
pull_request:
branches:
- main
- develop
- feature/*
paths-ignore:
- README.md
permissions:
contents: write
actions: read
pull-requests: write
jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
api-key: ${{ secrets.API_KEY }}
test-prod:
needs: dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
# ref: https://github.com/danger/danger/issues/913
fetch-depth: 100
- name: Setup
uses: ./.github/actions/setup
with:
api-key: ${{ secrets.API_KEY }}
- name: ktlint-check
run: ./gradlew --continue ktlintCheck
- name: Test ProdDebug
run: ./gradlew testProdDebugUnitTest
- name: Report jacoco
run: ./gradlew jacocoTestReport
- name: jacoco-report to zip
run: zip -r jacocoTestReport.zip ./build/reports/jacoco/jacocoTestReport/html
- name: Archive jacoco report
uses: actions/upload-artifact@v4
with:
name: jacocoTestReport
path: ./build/reports/jacoco/jacocoTestReport/html
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Danger
uses: MeilCli/danger-action@v5
with:
plugins_file: Gemfile
install_path: vendor/bundle
danger_file: Dangerfile
danger_id: danger-pr
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
- name: Slack notify
uses: ./.github/actions/incoming-webhook
with:
slack-webhook-url: ${{ secrets.SLACK_INCOMING_WEBHOOK_URL }}
compile-mock:
needs: dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
api-key: ${{ secrets.API_KEY }}
- name: Compile MockDebug
run: ./gradlew compileMockDebugSource
compare-screnshots:
needs: dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
api-key: ${{ secrets.API_KEY }}
- name: compare screenshots
run: ./gradlew compareRoborazziProdDebug --stacktrace
- name: Make PR number directory for saving screenshots
if: ${{ github.event_name == 'pull_request' }}
run: mkdir -p ./pr/${{ github.event.number }}
- name: Move screenshots to PR number directory
if: ${{ github.event_name == 'pull_request' }}
run: |
# delete except *_compare.png
find ./app/build/outputs/roborazzi -type f | grep -v -e '.*_compare.png' | xargs rm -rf
mv ./app/build/outputs/roborazzi ./pr/${{ github.event.number }}/
ls ./pr/${{ github.event.number }}
- name: Save screenshots
uses: actions/upload-artifact@v4
with:
name: pr directory
path: pr/${{ github.event.number }}/
- name: Create comments
run: |
touch comments
echo "Snapshot diff report" >> comments
echo "|File name|Image|" >> comments
echo "|---|---|" >> comments
# Find all the files ending with _compare.png
files_to_add=$(find . -type f -path "./pr/${{ github.event.number }}/*" -name "*_compare.png")
# Add compare image
for file in $files_to_add; do
compare_file_path=$(basename $file)
echo "compare file path: $compare_file_path"
compare_file_name=$(echo $compare_file_path | rev | cut -d. -f-2 | rev )
echo echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
image_url="${{ steps.artifact-upload-step.outputs.artifact-url }}'/roborazzi/pr/$PR_NUMBER/$compare_file_path"
echo "| $compare_file_name | <img src=\"$image_url\" width=\"600\"> |" >> comments
done
- name: Find Comment
uses: peter-evans/find-comment@v3
id: fc
with:
issue-number: ${{ github.event.number }}
comment-author: 'github-actions[bot]'
body-includes: Snapshot diff report
- name: Add or update comment on PR
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ github.event.number }}
body: ./comments
edit-mode: replace