Yield generated for 1501741a-5eaa-4ce2-a1be-d660e168629b
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
414 B

version: 2.1
jobs:
hello_world:
docker:
- image: circleci/node:12
steps:
- checkout
- run: echo "Hello World"
yarn:
docker:
- image: circleci/node:12
steps:
- checkout
- run: yarn global add node-gyp && yarn install
- run: npm-v1-dependencies-{{ checksum "yarn.lock" }}
workflows:
version: 2
build_test:
jobs:
- hello_world
- yarn