Skip to content

Commit c146a70

Browse files
committed
feat: validate step
1 parent 67234f1 commit c146a70

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/test-deploy.yml

+18
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,25 @@ filters: &filters
77
tags:
88
only: /.*/
99

10+
jobs:
11+
validate:
12+
docker:
13+
- image: cimg/base:current
14+
steps:
15+
- workflow-queue/block_execution
16+
- run:
17+
name: Output timestamps
18+
command: |
19+
export RAND=$((1 + $RANDOM % 30))
20+
echo "Sleeping for ${RAND}"
21+
sleep $RAND
22+
1023
workflows:
24+
validate:
25+
jobs:
26+
- validate:
27+
filters: *filters
28+
1129
test-deploy:
1230
jobs:
1331
# Make sure to include "filters: *filters" in every test job you want to run as part of your deployment.

0 commit comments

Comments
 (0)