-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
138 lines (118 loc) · 3.75 KB
/
index.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
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
import * as core from '@actions/core'
import * as exec from '@actions/exec'
import * as path from 'path'
import { parseIntSafe, parseTemplate, parseYamlBoolean } from './utils'
// Define interface for inputs
interface ActionInputs {
useAPI: boolean
or8n: boolean
debug: boolean
matrixIndex: string
matrixTotal: string
apiKey?: string
projectId?: string
previousCIBuildId?: string
key?: string
id?: string
path?: string
outputDir?: string
pwOutputDir?: string
}
// Get inputs with types
function getInputs(): ActionInputs {
return {
useAPI: parseYamlBoolean(core.getInput('use-api')) ?? false,
or8n: parseYamlBoolean(core.getInput('or8n')) ?? false,
debug: parseYamlBoolean(core.getInput('debug')) ?? false,
apiKey: core.getInput('api-key') ?? process.env.CURRENTS_API_KEY,
projectId: core.getInput('project-id') ?? process.env.CURRENTS_PROJECT_ID,
previousCIBuildId: core.getInput('previous-ci-build-id'),
key: core.getInput('key') ?? process.env.CURRENTS_RECORD_KEY,
id: core.getInput('id'),
path: core.getInput('path'),
outputDir: core.getInput('output-dir'),
pwOutputDir: core.getInput('pw-output-dir'),
matrixIndex: core.getInput('matrix-index') || '1',
matrixTotal: core.getInput('matrix-total') || '1'
}
}
async function run(): Promise<void> {
try {
const inputs = getInputs()
await exec.exec('npm install -g @currents/cmd')
const useAPI = inputs.useAPI || inputs.or8n
core.saveState('or8n', useAPI)
if (useAPI) {
await or8n(inputs)
return
}
const presetOutput = '.currents_env'
const options: string[] = [
`--preset last-run`,
`--preset-output ${presetOutput}`,
`--matrix-index ${inputs.matrixIndex}`,
`--matrix-total ${inputs.matrixTotal}`,
`--continue`
]
if (inputs.key) {
options.push(`--key ${inputs.key}`)
}
if (inputs.id) {
options.push(`--id ${inputs.id}`)
}
if (inputs.outputDir) {
options.push(`--output-dir ${inputs.outputDir}`)
}
if (inputs.debug) {
options.push(`--debug`)
}
const cacheGetCommand = `npx currents cache get ${options.join(' ')}`
const exitCode = await exec.exec(cacheGetCommand, [], {
ignoreReturnCode: true
})
if (exitCode === 0) {
const extraPwFlags = await exec.getExecOutput(`cat ${presetOutput}`)
core.setOutput('extra-pw-flags', extraPwFlags.stdout.trim())
}
core.saveState('key', inputs.key)
core.saveState('debug', inputs.debug)
core.saveState('id', inputs.id)
core.saveState('path', inputs.path || '')
core.saveState('pwOutputDir', inputs.pwOutputDir)
core.saveState('matrixIndex', inputs.matrixIndex)
core.saveState('matrixTotal', inputs.matrixTotal)
} catch (error) {
core.setFailed((error as Error).message)
}
}
async function or8n(inputs: ActionInputs): Promise<void> {
const runAttempt = parseIntSafe(process.env.GITHUB_RUN_ATTEMPT, 1)
if (runAttempt > 1) {
let previousBuildId =
inputs.previousCIBuildId && parseTemplate(inputs.previousCIBuildId)
if (!previousBuildId) {
const repository = process.env.GITHUB_REPOSITORY
const runId = process.env.GITHUB_RUN_ID
const previousRunAttempt = runAttempt - 1
previousBuildId = `${repository}-${runId}-${previousRunAttempt}`
}
const lastRunFilePath = path.resolve(
inputs.pwOutputDir ?? 'test-results',
'.last-run.json'
)
const options = [
`--pw-last-run`,
`--ci-build-id`,
`${previousBuildId}`,
`--output`,
`${lastRunFilePath}`
]
const exitCode = await exec.exec(
`npx currents api get-run ${options.join(' ')}`
)
if (exitCode === 0) {
core.setOutput('extra-pw-flags', '--last-failed')
}
}
}
run()