Skip to content

Commit 7335c53

Browse files
authored
chore: Add .circleci/config.yml (#19)
1 parent 4319b96 commit 7335c53

File tree

2 files changed

+18
-27
lines changed

2 files changed

+18
-27
lines changed

.circleci/config.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2.1
2+
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: yarn install
13+
- run: npm test
14+
- run: npx semantic-release
15+
workflows:
16+
build-and-test:
17+
jobs:
18+
- build-and-test

circle.yml

-27
This file was deleted.

0 commit comments

Comments
 (0)