forked from TuneZilla-Development/verdaccio-oidc-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcircle.yml
56 lines (50 loc) · 1.02 KB
/
circle.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: 2.1
executors:
node:
docker:
- image: circleci/node:10
jobs:
install:
executor: node
steps:
- checkout
- restore_cache:
keys:
- yarn-cache-{{ checksum "yarn.lock" }}
- yarn-cache-
- run: yarn install --frozen-lockfile --no-progress
- save_cache:
key: yarn-cache-{{ checksum "yarn.lock" }}
paths: node_modules
- persist_to_workspace:
root: .
paths: .
lint:
executor: node
steps:
- attach_workspace: { "at": "." }
- run: yarn lint
test:
executor: node
steps:
- attach_workspace: { "at": "." }
- run: yarn test:coverage
prepack:
executor: node
steps:
- attach_workspace: { "at": "." }
- run: yarn prepack
workflows:
version: 2
default:
jobs:
- install
- lint:
requires:
- install
- test:
requires:
- install
- prepack:
requires:
- install