-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.ts
113 lines (99 loc) · 2.94 KB
/
main.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
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
import * as core from '@actions/core'
import {exec} from '@actions/exec'
import * as YAML from 'yaml'
import {CheckCallable} from './types'
import custom from './checks/custom'
import grumphp from './checks/grumphp'
import phplint from './checks/phplint'
import phpcs from './checks/phpcs'
import phpmd from './checks/phpmd'
import phpstan from './checks/phpstan'
const availableChecks: {
[key: string]: CheckCallable
} = {
custom,
grumphp,
phplint,
phpcs,
phpmd,
phpstan
}
async function run(): Promise<void> {
const phpVersion = core.getInput('php-version')
const validVersions = [
'7.3',
'7.4',
'8.0',
'8.1',
'8.2',
'8.3',
'8.4',
'latest'
]
if (!validVersions.includes(phpVersion)) {
throw new Error('Invalid PHP version.')
}
const registry = core.getInput('registry')
if (!['ghcr', 'dockerhub'].includes(registry)) {
throw new Error("Invalid registry. Can only be 'ghcr' or 'dockerhub'.")
}
const versionString = phpVersion === 'latest' ? 'latest' : `php${phpVersion}`
const registryPrefix = registry === 'ghcr' ? 'ghcr.io/' : ''
const dockerImage = `${registryPrefix}hussainweb/drupalqa:${versionString}`
const webRoot = core.getInput('web-root')
const env = {...process.env}
const githubWorkspace = env.GITHUB_WORKSPACE as string
// Parse 'checks' into an array of commands.
const inpChecks = core.getInput('checks')
const checksCommands: string[][] = []
let checks = {
phplint: {},
phpcs: {}
}
if (inpChecks) {
checks = YAML.parse(inpChecks)
if (typeof checks !== 'object') {
throw new Error('checks must be a mapping of commands and options.')
}
}
for (const [key, value] of Object.entries(checks)) {
if (typeof value !== 'object') {
throw new Error(`invalid value '${value}' for option ${key}`)
}
if (key in availableChecks) {
checksCommands.push(availableChecks[key](value, webRoot))
} else if (key.startsWith('custom_')) {
checksCommands.push(availableChecks['custom'](value, webRoot))
} else {
throw new Error(`invalid check ${key} specified.`)
}
}
// Pull the image first (and collapse the output)
core.startGroup('Pull Docker image')
await exec('docker', ['pull', dockerImage])
core.endGroup()
const commonDockerOptions: string[] = []
commonDockerOptions.push('--workdir', githubWorkspace)
commonDockerOptions.push('--rm')
commonDockerOptions.push('--init')
commonDockerOptions.push('--tty')
commonDockerOptions.push('-v', '/var/run/docker.sock:/var/run/docker.sock')
commonDockerOptions.push('-v', `${githubWorkspace}:${githubWorkspace}`)
for (const command of checksCommands) {
core.startGroup(`Running ${command.join(' ')}`)
await exec('docker', [
'run',
...commonDockerOptions,
dockerImage,
...command
])
core.endGroup()
}
}
try {
run()
} catch (err) {
if (err instanceof Error) {
core.setFailed(`drupalqa: ${err.message}`)
}
}