Skip to content

Commit 17547f9

Browse files
committedMay 6, 2020
Add .circleci/config.yml
1 parent 48d7be2 commit 17547f9

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed
 

‎.circleci/config.yml

+10-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1+
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
12
version: 2.1
3+
# Use a package of configuration called an orb.
24
orbs:
3-
node: circleci/node@1.1.6
4-
jobs:
5-
build-and-test:
6-
executor:
7-
name: node/default
8-
steps:
9-
- checkout
10-
- node/with-cache:
11-
steps:
12-
- run: npm install
13-
- run: npm test
5+
# Declare a dependency on the welcome-orb
6+
welcome: circleci/welcome-orb@0.4.1
7+
# Orchestrate or schedule a set of jobs
148
workflows:
15-
build-and-test:
16-
jobs:
17-
- build-and-test
9+
# Name the workflow "welcome"
10+
welcome:
11+
# Run the welcome/run job in its own container
12+
jobs:
13+
- welcome/run

0 commit comments

Comments
 (0)
Please sign in to comment.