-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathdangerfile.ts
55 lines (46 loc) · 1.77 KB
/
dangerfile.ts
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
import { message, warn, fail, danger } from "danger"
const child_process = require('child_process');
var libFileChangeRegex = /.*lib.*/
var changelogChangeRegex = /.*CHANGELOG.md/
function checkIsChangelogUpdated() {
const changedFiles = [...danger.git.created_files, ...danger.git.modified_files]
const isChangelogUpdated = changedFiles.some((filePath) => changelogChangeRegex.test(filePath))
const isLibFilesUpdated = changedFiles.some((filePath) => libFileChangeRegex.test(filePath))
if (!isChangelogUpdated && isLibFilesUpdated) {
warn('Please update the `CHANGELOG.md` file.')
}
}
function checkIsDocumentationUpdated() {
const changedFiles = [...danger.git.created_files, ...danger.git.modified_files]
const isDocumentationUpdated = changedFiles.some((filePath) =>
filePath.match(/docs\/.*/)
)
const isLibFilesUpdated = changedFiles.some((filePath) => libFileChangeRegex.test(filePath))
if (!isDocumentationUpdated && isLibFilesUpdated) {
warn('Please update the documentation in the `docs/` folder.')
}
}
function checkIsBodyEmpty() {
if (danger.github.pr.body == "") {
warn("Please add a description to your PR.")
}
}
function checkPRSize() {
const maxLinesOfCode = 1000
const linesOfCode = danger.github.pr.additions + danger.github.pr.deletions
if (linesOfCode > maxLinesOfCode) {
fail(`This pull request adds too many lines of code. It adds ${linesOfCode} lines, but the maximum allowed is ${maxLinesOfCode} lines.`)
}
}
function runFlutterAnalyzer() {
try {
child_process.execSync('flutter analyze')
} catch (error) {
fail(`Flutter analyzer failed. Please fix the issues reported by the analyzer. ${error}`)
}
}
checkIsChangelogUpdated()
checkIsDocumentationUpdated()
checkIsBodyEmpty()
checkPRSize()
runFlutterAnalyzer()