We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48d7be2 commit 17547f9Copy full SHA for 17547f9
.circleci/config.yml
@@ -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
2
version: 2.1
3
+# Use a package of configuration called an orb.
4
orbs:
- node: circleci/node@1.1.6
-jobs:
5
- build-and-test:
6
- executor:
7
- name: node/default
8
- steps:
9
- - checkout
10
- - node/with-cache:
11
12
- - run: npm install
13
- - run: npm test
+ # Declare a dependency on the welcome-orb
+ welcome: circleci/welcome-orb@0.4.1
+# Orchestrate or schedule a set of jobs
14
workflows:
15
16
- jobs:
17
- - build-and-test
+ # Name the workflow "welcome"
+ welcome:
+ # Run the welcome/run job in its own container
+ jobs:
+ - welcome/run
0 commit comments