We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e81c6d commit 670093bCopy full SHA for 670093b
circle.yml
@@ -0,0 +1,37 @@
1
+version: 2.1
2
+orbs:
3
+ node: circleci/node@1.1.6
4
+jobs:
5
+ build:
6
+ executor:
7
+ name: node/default
8
+ tag: '12'
9
+ steps:
10
+ - checkout
11
+ - node/with-cache:
12
13
+ - run: npm ci
14
+
15
+ release:
16
17
18
19
20
21
22
23
24
+ - run: npx semantic-release
25
26
+workflows:
27
+ version: 2
28
+ test_and_release:
29
+ jobs:
30
+ - build
31
+ - release:
32
+ requires:
33
34
+ filters:
35
+ branches:
36
+ only:
37
+ - master
0 commit comments