github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/steps/example19.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        steps:
     7        - name: Build and test2
     8          spec:
     9            steps:
    10            - name: Build and test
    11              spec:
    12                run: npm install
    13              type: script
    14            - name: Build and test1
    15              spec:
    16                run: npm run build
    17              type: script
    18          type: group
    19        - name: lint code and store results
    20          spec:
    21            run: npm lint > results.txt
    22          type: script
    23        - name: Test code from build step stored in the dist/ directory
    24          spec:
    25            run: npm test
    26          type: script
    27      type: ci
    28  version: 1