I wrote a schedule/cron job with the following expression
"0 9-17 * * *"
as I wanted it to run everyday from 9am to 5pm, every hour. However the callback function was only executed for day 1 and not for everyday.
const job = schedule.scheduleJob("0 9-17 * * *", async () => {
// my code
})
Please do highlight my mistake.