We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c857f4 commit 7f3e1b8Copy full SHA for 7f3e1b8
.circleci/config.yml
@@ -11,7 +11,7 @@ jobs:
11
command: yarn install
12
name: Run yarn install
13
orbs:
14
- node: circleci/node@7.1.0
+ node: circleci/node@circleci/node@7.1.0
15
version: 2.1
16
workflows:
17
test:
.circleci/config.yml.orig
@@ -0,0 +1,19 @@
1
+jobs:
2
+ install:
3
+ executor:
4
+ name: node/default
5
+ tag: '14.15.0'
6
+ steps:
7
+ - checkout
8
+ - node/install-packages:
9
+ pkg-manager: yarn
10
+ - run:
+ command: yarn install
+ name: Run yarn install
+orbs:
+ node: circleci/node@3.0.1
+version: 2.1
+workflows:
+ test:
18
+ jobs:
19
+ - install
0 commit comments