fix typo
ci / build (push) Failing after 34m36s Details

This commit is contained in:
CJ_Clippy 2024-07-19 01:55:31 -08:00
parent 1628c7b4e6
commit 2b2f925146
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ async function run() {
// const codePath = new URL('./workflows.js', import.meta.url).pathname
const codePath = path.join(__dirname, './workflows.cjs')
console.log(`codePath=${codePath}`)
const workflowsBundle = {
const workflowBundle = {
codePath
}
console.log(`codePath=${codePath}`)
@ -36,7 +36,7 @@ async function run() {
// the Temporal server.
const worker = await Worker.create({
// ...workflowOption(),
workflowsBundle,
workflowBundle,
activities,
taskQueue: process.env.TEMPORAL_TASK_QUEUE!,
});