Added action to telemetry payload.

This commit is contained in:
Mike Cao 2022-03-18 22:39:39 -07:00
parent 7cf0927741
commit 5b1eb8bec2
3 changed files with 30 additions and 31 deletions

View file

@ -3,7 +3,7 @@ const { sendTelemetry } = require('./telemetry');
async function run() {
if (!process.env.DISABLE_TELEMETRY) {
await sendTelemetry();
await sendTelemetry('build');
}
}