Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
23 lines
418 B
Plaintext
23 lines
418 B
Plaintext
'use strict'
|
|
|
|
const { Writable } = require('stream')
|
|
const parentPort = require('worker_threads').parentPort
|
|
|
|
async function run (opts) {
|
|
return new Writable({
|
|
autoDestroy: true,
|
|
write (chunk, enc, cb) {
|
|
if (parentPort) {
|
|
parentPort.postMessage({
|
|
code: 'EVENT',
|
|
name: 'context',
|
|
args: opts.$context
|
|
})
|
|
}
|
|
cb()
|
|
}
|
|
})
|
|
}
|
|
|
|
module.exports = run
|