-
Notifications
You must be signed in to change notification settings - Fork 2
200 lines (169 loc) · 6.74 KB
/
Copy pathtypecheck.yml
File metadata and controls
200 lines (169 loc) · 6.74 KB
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
196
197
198
199
200
name: Typecheck
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: typecheck-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.2.6"
- name: Install dependencies
shell: bash
run: |
set -euo pipefail
bun install --frozen-lockfile
for pkg in packages/*; do
[ -f "$pkg/package.json" ] || continue
grep -q '"file:' "$pkg/package.json" || continue
grep -oP '"[^"]+": "file:\K[^"]+' "$pkg/package.json" | while read -r dep; do
name=$(jq -r .name "$pkg/$dep/package.json")
scope_dir="$pkg/node_modules/$(dirname "$name")"
mkdir -p "$scope_dir"
ln -sfn "$(cd "$pkg/$dep" && pwd)" "$pkg/node_modules/$name"
done
done
- name: Run typecheck
id: typecheck
continue-on-error: true
working-directory: packages/cli
shell: bash
run: |
set -o pipefail
bun run typecheck 2>&1 | tee "$GITHUB_WORKSPACE/typecheck-output.txt"
- name: Upload typecheck output
if: always()
uses: actions/upload-artifact@v4
with:
name: typecheck-output
path: typecheck-output.txt
retention-days: 7
- name: Process results
id: result
shell: bash
run: |
set -euo pipefail
if [ "${{ steps.typecheck.outcome }}" = "success" ]; then
echo "status=Passed" >> "$GITHUB_OUTPUT"
echo "details=" >> "$GITHUB_OUTPUT"
exit 0
fi
ERRORS_COUNT="$(grep -c "error TS" typecheck-output.txt 2>/dev/null || echo "0")"
echo "status=Failed" >> "$GITHUB_OUTPUT"
echo "details=${ERRORS_COUNT} type errors" >> "$GITHUB_OUTPUT"
- name: Update PR comment
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
env:
SECTION: Typecheck
STATUS: ${{ steps.result.outputs.status }}
DETAILS: ${{ steps.result.outputs.details }}
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
with:
script: |
const fs = require("fs");
const marker = "<!-- ci-summary -->";
const detailsMarker = "<!-- details-section -->";
const section = process.env.SECTION;
const status = process.env.STATUS;
const details = process.env.DETAILS;
const runUrl = process.env.RUN_URL;
const { owner, repo } = context.repo;
const issue_number = context.payload.pull_request.number;
let output = "";
try {
output = fs.readFileSync("typecheck-output.txt", "utf8");
} catch (_) {
output = "(typecheck-output.txt not found)";
}
const MAX_CHARS = 60000;
if (output.length > MAX_CHARS) {
output = [
"(truncated; showing last " + MAX_CHARS + " chars)",
"",
output.slice(-MAX_CHARS),
].join("\n");
}
const comments = await github.paginate(github.rest.issues.listComments, {
owner, repo, issue_number, per_page: 100,
});
const existing = comments.find(c =>
c.user?.login === "github-actions[bot]" && c.body?.includes(marker)
);
let rows = {};
let existingDetails = {};
if (existing?.body) {
const parts = existing.body.split(detailsMarker);
const tableSection = parts[0] || "";
const lines = tableSection.split("\n");
for (const line of lines) {
const match = line.match(/^\| ([^|]+) \| ([^|]+) \|$/);
if (match) {
const name = match[1].trim();
if (name && name !== "Check" && !name.startsWith(":")) {
rows[name] = match[2].trim();
}
}
}
const detailsRegex = /<details>\s*<summary><strong>([^<]+)<\/strong>.*?<\/summary>([\s\S]*?)<\/details>/g;
let detailMatch;
while ((detailMatch = detailsRegex.exec(existing.body)) !== null) {
existingDetails[detailMatch[1].trim()] = detailMatch[0];
}
}
const resultText = status === "Passed" ? "Passed" : "Failed";
rows[section] = status === "Passed" ? resultText : `[${resultText}](${runUrl}) - ${details}`;
if (status === "Failed") {
existingDetails[section] = [
`<details>`,
`<summary><strong>${section}</strong> - ${resultText}</summary>`,
"",
details || "",
"",
`[View run](${runUrl})`,
"",
"```text",
output,
"```",
"</details>",
].join("\n");
} else {
delete existingDetails[section];
}
const order = ["Lint", "Format", "Typecheck", "Build", "Release", "PR Title", "Labels"];
const sortedKeys = Object.keys(rows).sort((a, b) => {
const ai = order.indexOf(a), bi = order.indexOf(b);
return (ai === -1 ? 999 : ai) - (bi === -1 ? 999 : bi);
});
let table = `| Check | Result |\n|:------|:-------|\n`;
for (const key of sortedKeys) {
table += `| ${key} | ${rows[key]} |\n`;
}
const detailsOrder = ["Lint", "Format", "Typecheck", "Build", "Release", "PR Title", "Labels"];
const sortedDetails = Object.keys(existingDetails).sort((a, b) => {
const ai = detailsOrder.indexOf(a), bi = detailsOrder.indexOf(b);
return (ai === -1 ? 999 : ai) - (bi === -1 ? 999 : bi);
});
let body = `${marker}\n## CI Summary\n\n${table}`;
if (sortedDetails.length > 0) {
body += `\n${detailsMarker}\n\n---\n\n${sortedDetails.map(k => existingDetails[k]).join("\n\n")}`;
}
if (existing) {
await github.rest.issues.updateComment({ owner, repo, comment_id: existing.id, body });
} else {
await github.rest.issues.createComment({ owner, repo, issue_number, body });
}
- name: Fail if typecheck failed
if: steps.typecheck.outcome == 'failure'
run: exit 1