github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/steps/example20.yaml.golden (about) 1 { 2 "definitions": { 3 "caches": { 4 "my-bundler-cache": "vendor/bundle" 5 } 6 }, 7 "pipelines": { 8 "default": [ 9 { 10 "step": { 11 "caches": [ 12 "my-bundler-cache", 13 "node" 14 ], 15 "script": [ 16 "bundle install --path vendor/bundle", 17 "ruby -e 'print \"Hello, World\\n\"'" 18 ] 19 } 20 } 21 ] 22 } 23 }