Skip to content

Commit 8b5f3e9

Browse files
authored
Commit
1 parent fe5b78c commit 8b5f3e9

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2.1
2+
3+
jobs:
4+
test:
5+
docker:
6+
- image: cimg/node:16.8.0-browsers
7+
steps:
8+
- checkout
9+
- restore_cache:
10+
keys:
11+
- node-deps-{{ checksum "package-lock.json" }}
12+
- run:
13+
name: Install Dependencies
14+
command: npm install
15+
- save_cache:
16+
key: node-deps-{{ checksum "package-lock.json" }}
17+
paths:
18+
- node_modules
19+
- run:
20+
name: Run Tests
21+
command: npm test
22+
23+
workflows:
24+
test-flow:
25+
jobs:
26+
- test

0 commit comments

Comments
 (0)