Running Tests and Tasks
Tests
Container
kind: Build
name: api
type: container
---
kind: Test
name: api
type: container
dependencies: [build.api]
spec:
image: ${actions.build.api.outputs.deployment-image-id} # <--- The output from the Build action
command: [npm, run, test]
---
kind: Run
name: seed-db
type: container
dependencies: [build.api]
spec:
image: ${actions.build.api.outputs.deployment-image-id} # <--- The output from the Build action
command: [npm, run, seed-db]Helm Pod
Kubernetes Pod
Kubernetes Exec
Test Artifacts
Tasks
Container
Helm Pod
Kubernetes Pod
Kubernetes Exec
Last updated
Was this helpful?

