Bring back the formatter

This commit is contained in:
Yoann Chaudet
2022-08-23 17:19:21 -07:00
parent b627026553
commit 4865e84b02
14 changed files with 588 additions and 544 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ axiosRetry(axios, {
}
})
const {Deployment} = require('./deployment')
const { Deployment } = require('./deployment')
async function emitTelemetry() {
// All variables we need from the runtime are set in the Deployment constructor
@@ -26,7 +26,7 @@ async function emitTelemetry() {
await axios
.post(
telemetryUrl,
{github_run_id: deployment.workflowRun},
{ github_run_id: deployment.workflowRun },
{
headers: {
Accept: 'application/vnd.github.v3+json',
@@ -54,4 +54,4 @@ async function main() {
main()
module.exports = {emitTelemetry}
module.exports = { emitTelemetry }