Use for..of loops instead of promises

a16d13fd4194c9b3bca1d2350a62f84c9a2d7fdc

Tucker McKnight <tucker@pangolin.lan> | Sun Oct 12 2025

Use for..of loops instead of promises

These wait for each other in a sequence, unliked a Promise.all(array.map),
which executes everything all at once. Artifact steps whould be able
to depend on the result of the previous one, so the need to
go in sequence.
main.ts:89
Before
After