We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485ebd9 commit 0cc2682Copy full SHA for 0cc2682
.harness/ci.yaml
@@ -40,16 +40,23 @@ pipeline:
40
spec:
41
image: redis:latest
42
ports:
43
- - 6379:6379
+ - "6379:6379"
44
healthCheck:
45
command:
46
- - "redis-cli"
47
- - "ping"
+ - redis-cli
+ - ping
48
interval: 10s
49
retries: 3
50
timeout: 5s
51
execution:
52
steps:
53
+ - step:
54
+ type: Run
55
+ name: Ping redis
56
+ identifier: Ping_redis
57
+ spec:
58
+ shell: Sh
59
+ command: redis-cli ping
60
- step:
61
type: Action
62
name: Set up Nodejs
0 commit comments