Skip to content

Commit 92fbb88

Browse files
committed
ci: add initial CircleCI config
1 parent aec4ff2 commit 92fbb88

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.circleci/config.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 2.1
2+
3+
orbs:
4+
node: circleci/[email protected]
5+
6+
executors:
7+
default-executor:
8+
docker:
9+
- image: "cimg/node:16.20.0-browsers"
10+
auth:
11+
username: $DOCKERHUB_USERNAME
12+
password: $DOCKERHUB_PASSWORD
13+
14+
commands:
15+
setup:
16+
steps:
17+
- checkout
18+
- node/install-packages
19+
20+
workflows:
21+
build-test:
22+
jobs:
23+
- build_test
24+
25+
jobs:
26+
build_test:
27+
executor: default-executor
28+
steps:
29+
- setup

0 commit comments

Comments
 (0)