Native job queue - run sequentially

Was wondering if there is a way to queue the same job multiple times but only run one at a time and then trigger the next job in the queue once the job is done.

This can be done with powershell jobs as shown here: https://devblogs.microsoft.com/powershell/scaling-and-queuing-powershell-background-jobs/
But I was just wondering if PSU has anything natively to handle this, if not I will just use powershell jobs to queue psu jobs.

Thanks

Product: PowerShell Universal
Version: 3.8.3

I don’t think that’s exactly supported right now. Might be able to accomplish this with continuous jobs but not really the same. You could also try to run a script and set the concurrent job limit to 1. I think that would queue jobs because the concurrent limit was 1.