|
| 1 | +# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' |
| 2 | +version: 2.1 |
| 3 | + |
| 4 | +# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. |
| 5 | +# See: https://circleci.com/docs/2.0/orb-intro/ |
| 6 | +orbs: |
| 7 | + node: circleci/node@4.7 |
| 8 | + |
| 9 | +# Invoke jobs via workflows |
| 10 | +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows |
| 11 | +workflows: |
| 12 | + sample: # This is the name of the workflow, feel free to change it to better match your workflow. |
| 13 | + # Inside the workflow, you define the jobs you want to run. |
| 14 | + jobs: |
| 15 | + - node/test: |
| 16 | + # This is the node version to use for the `cimg/node` tag |
| 17 | + # Relevant tags can be found on the CircleCI Developer Hub |
| 18 | + # https://circleci.com/developer/images/image/cimg/node |
| 19 | + version: '16.10' |
| 20 | + # If you are using yarn, change the line below from "npm" to "yarn" |
| 21 | + pkg-manager: npm |
0 commit comments