-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcircle.yml
More file actions
32 lines (32 loc) · 763 Bytes
/
circle.yml
File metadata and controls
32 lines (32 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: 2
general:
artifacts:
- "npm-debug.log"
jobs:
build:
working_directory: ~/busy
docker:
- image: circleci/node:8.4.0
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: npm install
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- run:
name: lint
command: npm run lint
- run:
name: test
command: npm run test
- run:
name: code-coverage
command: npm run test:coverage
- store_artifacts:
path: coverage
prefix: coverage