Skip to content

Commit 3389571

Browse files
Fixed CircleCI.
1 parent a1ab91d commit 3389571

File tree

2 files changed

+27
-9
lines changed

2 files changed

+27
-9
lines changed

.circleci/config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2.1
2+
3+
orbs:
4+
node: circleci/node@4.0.0
5+
6+
workflows:
7+
lint-and-test:
8+
jobs:
9+
- checkout
10+
11+
- restore_cache:
12+
keys:
13+
- v1-dependencies-{{ checksum "package.json" }}
14+
- v1-dependencies-
15+
16+
- run: npm install
17+
18+
- save_cache:
19+
paths:
20+
- node_modules
21+
- ~/.npm
22+
- ~/.cache
23+
24+
key: v1-dependencies-{{ checksum "package.json" }}
25+
26+
- run: npm run lint
27+
- run: npm run test

circle.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)