github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/tutorial-node/example1.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build_and_test
     5      spec:
     6        platform:
     7          arch: amd64
     8          os: linux
     9        runtime:
    10          spec: {}
    11          type: cloud
    12        steps:
    13        - name: install_packages
    14          spec:
    15            run: yarn install
    16          type: script
    17        - name: Run tests
    18          spec:
    19            run: |-
    20              set -eo pipefail
    21              yarn test
    22            shell: bash
    23          type: script
    24        - name: Build app
    25          spec:
    26            run: |-
    27              set -eo pipefail
    28              yarn build
    29            shell: bash
    30          type: script
    31      type: ci
    32  version: 1