We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93202c5 commit 1b5dd56Copy full SHA for 1b5dd56
1 file changed
.circleci/config.yml
@@ -14,8 +14,6 @@ jobs:
14
paths:
15
- node_modules/
16
- run: npm test
17
- - run: npm run coverage
18
-
19
node10:
20
docker:
21
- image: circleci/node:10
@@ -31,11 +29,26 @@ jobs:
31
29
32
30
33
- run: npm run coverage
+ node12:
+ docker:
34
+ - image: circleci/node:12
35
+ steps:
36
+ - checkout
37
+ - restore_cache:
38
+ keys:
39
+ - npm-deps-{{ checksum "package.json" }}
40
+ - run: npm install
41
+ - save_cache:
42
+ key: npm-deps-{{ checksum "package.json" }}
43
+ paths:
44
+ - node_modules/
45
+ - run: npm test
46
+ - run: npm run coverage
47
48
workflows:
49
version: 2
50
nodes:
51
jobs:
52
- node8
53
- node10
54
+ - node12
0 commit comments