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.
21 lines
332 B
21 lines
332 B
version: 2.1
|
|
jobs:
|
|
cache: &shared-config
|
|
- image: circleci/node:12
|
|
job1:
|
|
docker: *shared-config
|
|
steps:
|
|
- checkout
|
|
- run: echo "Hello World"
|
|
job2:
|
|
<<: *shared-config
|
|
steps:
|
|
- checkout
|
|
- run: echo "Hello Man"
|
|
|
|
workflows:
|
|
version: 2
|
|
build_test:
|
|
jobs:
|
|
- job1
|
|
- job2
|