-
Notifications
You must be signed in to change notification settings - Fork 11
/
circle.yml
57 lines (55 loc) · 1.19 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
57
defaults: &defaults
docker:
- image: circleci/node:16.9.1
version: 2
jobs:
build:
<<: *defaults
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install Dependencies
command: npm ci
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Lint
command: npm run lint
- run:
name: Build
command: npm run build
- persist_to_workspace:
root: .
paths:
- dist
- persist_to_workspace:
root: .
paths:
- node_modules
semver:
<<: *defaults
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Dist Folder
command: node_modules/.bin/ts-node scripts/publish-prep.ts
- run:
name: Semantic Release
command: node_modules/.bin/semantic-release
workflows:
version: 2
build:
jobs:
- build
- semver:
requires:
- build
filters:
branches:
only: master