Skip to content

Commit 670093b

Browse files
committed
add circle
1 parent 7e81c6d commit 670093b

File tree

3 files changed

+6356
-24
lines changed

3 files changed

+6356
-24
lines changed

circle.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
steps:
13+
- run: npm ci
14+
15+
release:
16+
executor:
17+
name: node/default
18+
tag: '12'
19+
steps:
20+
- checkout
21+
- node/with-cache:
22+
steps:
23+
- run: npm ci
24+
- run: npx semantic-release
25+
26+
workflows:
27+
version: 2
28+
test_and_release:
29+
jobs:
30+
- build
31+
- release:
32+
requires:
33+
- build
34+
filters:
35+
branches:
36+
only:
37+
- master

0 commit comments

Comments
 (0)