github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/orbs/example2.yaml (about)

     1  version: 2.1
     2  
     3  orbs:
     4    node: circleci/node@x.y # replace orb version
     5  
     6  jobs:
     7    test:
     8      executor: node/default # use the default executor specified by the orb
     9      steps:
    10        - checkout
    11        - node/install-packages # Use a command from the orb in a job's steps
    12  
    13  workflows:
    14    test_my_app:
    15      jobs:
    16        - test