Skip to content

Commit 71558e2

Browse files
author
Kiryl0115
committed
add config.yml
1 parent 95d9108 commit 71558e2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2.1
2+
3+
workflows:
4+
test:
5+
jobs:
6+
- test
7+
8+
jobs:
9+
test:
10+
docker:
11+
- image: cimg/node:14.18
12+
steps:
13+
- checkout
14+
- run:
15+
name: Install dependencies
16+
command: npm install
17+
- run:
18+
name: Build Project
19+
command: npm run build
20+
- run:
21+
name: Run Tests
22+
command: npm run test
23+

0 commit comments

Comments
 (0)