-
Notifications
You must be signed in to change notification settings - Fork 1
195 lines (161 loc) · 6.2 KB
/
install-build-test.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
name: CI
on:
pull_request:
branches:
- main
env:
GITHUB_TOKEN: ${{ secrets.DND_11_8_FRONTEND_TOKEN }}
GITHUB_ACTIONS: true
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
id: build
run: pnpm build 2>&1 | tee build.txt
- name: Comment when build failed
if: steps.build.outcome == 'failure'
uses: actions/github-script@v6
with:
github-token: ${{ env.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const build = fs.readFileSync('build.txt', 'utf-8');
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
});
const Convert = require('ansi-to-html');
const convert = new Convert();
const body = `
<h2>Build Failed</h2>
<pre>${convert.toHtml(build)}</pre>
`;
const existingComment = comments.find(comment => comment.body.includes('Build Failed'));
if (existingComment) {
await github.rest.issues.updateComment({
comment_id: existingComment.id,
owner: context.repo.owner,
repo: context.repo.repo,
body,
});
} else {
await github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body,
});
}
- name: Test
id: test
run: pnpm test 2>&1 | tee test.txt
- name: Comment when test failed
if: steps.test.outcome == 'failure'
uses: actions/github-script@v6
with:
github-token: ${{ env.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const test = fs.readFileSync('test.txt', 'utf-8');
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
});
const Convert = require('ansi-to-html');
const convert = new Convert();
const body = `
<h2>Test Failed</h2>
<pre>${convert.toHtml(test)}</pre>
`;
const existingComment = comments.find(comment => comment.body.includes('Test Failed'));
if (existingComment) {
await github.rest.issues.updateComment({
comment_id: existingComment.id,
owner: context.repo.owner,
repo: context.repo.repo,
body,
});
} else {
await github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body,
});
}
- name: Save test coverage result
run: pnpm coverage 2>&1 | tee coverage.txt
- name: Comment test coverage result
uses: actions/github-script@v6
with:
github-token: ${{ env.GITHUB_TOKEN }}
script: |
const fs = require('fs');
const coverage = fs.readFileSync('coverage.txt', 'utf-8').split("=============================== Coverage summary ===============================");
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
});
const Convert = require('ansi-to-html');
const convert = new Convert();
const body = `
<h2>Test Coverage</h2>
${convert.toHtml(coverage[0])}
\`\`\`text
=============================== Coverage summary ===============================
${convert.toHtml(coverage[1])}
\`\`\`
`;
const existingComment = comments.find(comment => comment.body.includes('Test Coverage'));
if (existingComment) {
await github.rest.issues.updateComment({
comment_id: existingComment.id,
owner: context.repo.owner,
repo: context.repo.repo,
body,
});
} else {
await github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body,
});
}
- name: Assign reviewer when all steps success
if: success()
uses: actions/github-script@v6
with:
github-token: ${{ env.GITHUB_TOKEN }}
script: |
const frontendDevelopers = ['gihwan-dev', 'hijiyun'];
const prCreator = context.payload.pull_request.user.login;
const reviewers = frontendDevelopers.filter((developer) => developer !== prCreator);
if (reviewers.length > 0) {
await github.rest.pulls.requestReviewers({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
reviewers: reviewers,
});
}