The container Run and Test actions can be used for running one off jobs as a Pod using a given container image and similarly for running test. For example:
kind:Buildname:apitype:container---kind:Testname:apitype:containerdependencies: [build.api]spec:image:${actions.build.api.outputs.deployment-image-id}# <--- The output from the Build actioncommand: [npm,run,test]---kind:Runname:seed-dbtype:containerdependencies: [build.api]spec:image:${actions.build.api.outputs.deployment-image-id}# <--- The output from the Build actioncommand: [npm,run,seed-db]