Hangfire jobs group by and execute jobs by sequential

Is there any way I can group by hangfire jobs, I have 90 jobs where I want to group by 3 and then I want to execute those 3 jobs by sequential that is one after another.

var jobId = BackgroundJob.Enqueue(...); // First job is available immediate.
jobId = BackgroundJob.ContinueWith(jobId, ...); // Second job will not be available until the first job completes.
BackgroundJob.ContinueWith(jobId, ...); // Third job will not be available until the second job completes.