Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit 8ffff55

Browse files
authored
Add .circleci/config.yml (#1)
1 parent 674c80d commit 8ffff55

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.circleci/config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2.1
2+
orbs:
3+
node: circleci/[email protected]
4+
jobs:
5+
build-and-test:
6+
executor:
7+
name: node/default
8+
steps:
9+
- checkout
10+
- node/with-cache:
11+
steps:
12+
- run: npm install
13+
- run: npm test
14+
workflows:
15+
build-and-test:
16+
jobs:
17+
- build-and-test

0 commit comments

Comments
 (0)